gpt4 book ai didi

python - 如何更改 regplot() 的点大小,seaborn 的散点图函数(python)

转载 作者:太空狗 更新时间:2023-10-30 00:21:52 26 4
gpt4 key购买 nike

我希望能够在像这样绘图时设置磅值:

sns.regplot(y=[1,3,4,2,5], x=[range(5)], data=df,
marker='o', color='red')
plt.show()

你们知道怎么做吗?

最佳答案

为此,您可以像这样向 regplot() 函数提供 scatter_kws arg:

import seaborn as sns
tips = sns.load_dataset('tips')
sns.regplot(x='total_bill', y='tip', data=tips,
marker='o', color='red', scatter_kws={'s':2})

small points

sns.regplot(x='total_bill', y='tip', data=tips,
marker='o', color='red', scatter_kws={'s':20})

big points

关于python - 如何更改 regplot() 的点大小,seaborn 的散点图函数(python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36921550/

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