I'm trying to make a scatter plot in matplotlib with arrows coming out of the points to indicate upper limits. To this end I've done the following,
arrow = u'$\u2193$'
ax.plot(x, y, linestyle='none', markersize=20, marker=arrow)
ax.plot(x, y, linestyle='none', markersize=10, marker='o')
However, I'm not totally satisfied with the results -
I'd like the arrows to come out of the middle of the points. So that point+arrow looks more like a single shape. Is there a way to do this?
Thanks!