gpt4 book ai didi

python - Seaborn regplot 中点和线的不同颜色

转载 作者:太空狗 更新时间:2023-10-29 22:10:22 49 4
gpt4 key购买 nike

Seaborn's regplot documentation 中列出的所有示例为点和回归线显示相同的颜色。更改 color 参数会同时更改两者。如何为点设置与线不同的颜色?

最佳答案

你是对的,因为 color 参数改变了所有的绘图元素。但是,如果您阅读 documentation 中相关句子的最后一点:

color : matplotlib color

Color to apply to all plot elements; will be superseded by colors passed in scatter_kws or line_kws.

因此,使用 scatter_kwsline_kws 我们可以单独更改它们的颜色。以文档中给出的第一个例子为例:

import seaborn as sns

tips = sns.load_dataset("tips")
ax = sns.regplot(x="total_bill", y="tip", data=tips,
scatter_kws={"color": "black"}, line_kws={"color": "red"})

plt.show()

给予:

enter image description here

关于python - Seaborn regplot 中点和线的不同颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48145924/

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