gpt4 book ai didi

python - 如何更改seaborn lmplot中的线条颜色

转载 作者:太空狗 更新时间:2023-10-29 18:00:04 24 4
gpt4 key购买 nike

我们可以得到如下图

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()

enter image description here

但是当我们有很多数据点时,回归线就不再可见了。我怎样才能改变线条的颜色?我再也找不到命令了

最佳答案

您可以将参数作为键值对(字典)传递给底层 plt.plotplt.scatter 函数以及scatter_kws。所以像 line_kws = {'color': 'red'} 这样的东西应该可以完成这项工作:

g = sns.lmplot(x="total_bill", y="tip",
data=tips, line_kws={'color': 'red'})
sns.plt.show()

关于python - 如何更改seaborn lmplot中的线条颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35827268/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com