Example of Regplot in Seaborn

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

y_ex = [0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 1]
sns.regplot(x = x_ex, y = y_ex, marker = '*', color = 'b')
<AxesSubplot:>

png