我想用标签绘制散点图。但是,这些标签是重叠的。如何增强其外观以便更好地查看数字?另外,我有整数的数字,但它在float中显示标签值。我想知道为什么。
期待收到你们的回复。
这是我的代码:
col = df['type'].map({'a':'r', 'b':'b', 'c':'y'})
ax = df.plot.scatter(x='x', y='y', c=col)
df[['x','y','id']].apply(lambda x: ax.text(*x),axis=1)
答案 0 :(得分:1)