REG PLOT

import seaborn as sns
a = [1,1,0,0,1,0,1,0,1,1,1,0,0]

b = [0,0,1,0,1,0,1,1,0,0,0,1,1]
sns.regplot(x = a, y = b , marker = "*", color="g")
<AxesSubplot:>

png