我下面有sns.scatterplot,在这里我将大小设置为Gap。出现的Gap值分别为0、0.8、0.16和0.24,但是我的数据框中的值为0、0.5、1和2。如何设置它们等于我的数据框中的值?
ax = sns.scatterplot(x='Number tapes', y='Ic', hue="Angle of twist (degree)", size="Gap", data=Ic_layers)
图例中显示的值似乎与您所说的数据范围在您的数据框中不一致,但是无论如何...
您可以在对legend='full'
的调用中使用legend='full'
来强制seaborn为您的色相/大小变量的每个级别显示一个图例项目。
scatterplot()
N=50
df = pd.DataFrame({'x': np.random.random(size=(N,)), 'y': np.random.random(size=(N,)),
'size': np.random.choice([0, 0.5, 1, 2], size=(N,))})
fig, (ax1, ax2) = plt.subplots(1,2)
sns.scatterplot(x="x", y="y", size="size", data=df, ax=ax1)
ax1.set_title('legend="brief" (default)')
sns.scatterplot(x="x", y="y", size="size", data=df, legend='full', ax=ax2)
ax2.set_title('legend="full"')