标签: python matplotlib seaborn
我正在尝试创建散点图,但是自动创建的图例超出范围(0 ... 100)。 120% label in legend。
sns.scatterplot(data=df1,x='x',y='y',hue='percent',ax=ax1)
我试图传递标签列表:
plt.legend(labels=[0.0,0.25,0.5,0.75,1.0])
但是它看起来仍然不好看:
答案 0 :(得分:0)
Matplotlib的颜色栏是一种在散点图中描绘一系列值的好方法。 Example。