如何调整regplot seaborn中点的大小

时间:2018-01-26 08:34:38

标签: python matplotlib seaborn

我在seaborn中使用regplot函数来绘制一个数字。有没有办法调整点的大小?我没想到我能找到它。 link

1 个答案:

答案 0 :(得分:1)

使用scatter_kws=参数。您可以传递要传递给plt.scatter

的选项字典
import seaborn as sns
tips = sns.load_dataset("tips")
ax = sns.regplot(x="total_bill", y="tip", data=tips, scatter_kws={'s':100, 'facecolor':'red'})

enter image description here