I am wondering if there is a way to turn off the linear fit in seaborn\'s lmplot or if there is an equivalent function that just produces the scatterplot. Sure, I
lmplot
set fit_reg argument to False:
fit_reg
False
sns.lmplot("x", "y", data=df, hue='dataset', fit_reg=False)