无法更改seaborn regplot回归线的大小?

时间:2020-10-20 15:45:36

标签: python matplotlib seaborn

通常的width=10不适用于regplot,如果将其打开,我可以更改散点图大小,但是它只是我尝试更改的回归线大小/宽度。

我已经检查了文档,找不到任何可以执行此操作的参数。我确定它似乎无法找到一个简单的解决方法?

我尝试过的其他参数如下

scatter_kws={"linewidth": 10}
linewidth=10
s=10
sizes=(10, 20)

诚然,我的大多数尝试仅适用于散点图,而只是要弄清楚我的沙丘是什么。

谢谢

import seaborn as sns
df = pd.DataFrame({"x": [1, 2, 3, 4, 5, 6], "y": [10, 30, 60, 90, 60, 30]})
sns.regplot(x="x", y="y", data=df, ci=65,scatter=False)
sns.lineplot(x="x", y="y", data=df)

1 个答案:

答案 0 :(得分:1)

尝试使用documentation中的line_kws,但有点隐藏:

{scatter,line} _kws:字典

要传递给plt.scatter和plt.plot的其他关键字参数。

sns.regplot(x="x", y="y", data=df, ci=65,scatter=False, line_kws={'linewidth':10})

enter image description here