我想在这样绘制时能够设置点大小:
sns.regplot(y=[1,3,4,2,5], x=[range(5)], data=df,
marker='o', color='red')
plt.show()
你们知道怎么做吗?
最佳答案
为此,您可以将regplot()
函数输入scatter_kws
参数,如下所示:
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})
sns.regplot(x='total_bill', y='tip', data=tips,
marker='o', color='red', scatter_kws={'s':20})
关于python - 如何更改Seaborn的散点图函数regplot()的点大小(python),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36921550/