标签: python matplotlib seaborn
我在seaborn中使用regplot函数来绘制一个数字。有没有办法调整点的大小?我没想到我能找到它。 link
答案 0 :(得分:1)
使用scatter_kws=参数。您可以传递要传递给plt.scatter
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'})