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
This doesn't directly answer the question, but may help others who find there way here who just want to do a plain old scatter plot.
As of version 0.9.0 seaborn now has a scatterplot method.
import seaborn as sns
sns.set(style="ticks")
df = sns.load_dataset("anscombe")
sns.scatterplot("x", "y", data=df, hue='dataset')