We can get a plot as bellow
import numpy as np, pandas as pd; np.random.seed(0)
import seaborn as sns; sns.set(style="white", color_codes=True)
tips = sns.load_dataset("tips")
g = sns.lmplot(x="total_bill", y="tip", data=tips)
sns.plt.show()
But when we have a lot of data points the regression line is not visible anymore. How can I change the line's color? I couldn't find anymore command
You can give arguments as key-value pairs (dictionary) to the underlying plt.plot
and plt.scatter
functions with line_kws
and scatter_kws
. So something like line_kws = {'color': 'red'}
should do the job :
g = sns.lmplot(x="total_bill", y="tip",
data=tips, line_kws={'color': 'red'})
sns.plt.show()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With