python - Scatter plot label overlaps - matplotlib -


i draw scatter plot labeling. however, these labels overlapping. how can enhance can see numbers better? also, have numbers in integer, shows label values in float. wondering why.

looking forward hearing guys.

here's code:

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) 

enter image description here


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -