猿问

如何在Seaborn的relplot上更改散点大小

我想更改分散点的大小。

这些都不起作用:

sns.relplot(x='columnx', y='columny', hue='cluster', data=df)

sns.relplot(x='columnx', y='columny', hue='cluster',  scatter_kws={'s':.01}, data=df)

sns.relplot(x='columnx', y='columny', hue='cluster', kwargs={'s':.01},  data=df)


阿波罗的战车
浏览 1185回答 2
2回答

萧十郎

由于基础函数是matplotlib.pyplot.scatter(x, y, s=None),所以将s = None填充为合适的整数会更改所有点的大小。sns.relplot(x='columnx', y='columny', hue='cluster', data=df, s=10)

幕布斯7119047

给定您的数据和问题,请在1到更大的数字之间选择大小,并使用上述s参数找出适合您的大小。只是更加清楚最终代码的外观。sns.relplot(     x='columnx', y='columny', hue='cluster', data=df, s=10)
随时随地看视频慕课网APP

相关分类

Python
我要回答