How do I change the figure size for my lmplot in seaborn?
This is my current code, but apparently figsize
isn't accepted.
sns.lmplot(x="x", y="y", hue="category", data=df,fit_reg=False,
markers=["o", "x"], palette="Set1",figsize=(7,7));
Thanks.