I am using matplotlib to make scatter plots. Each point on the scatter plot is associated with a named object. I would like to be able to see the name of an object when I ho
If you use jupyter notebook, my solution is as simple as:
%pylab import matplotlib.pyplot as plt import mplcursors plt.plot(...) mplcursors.cursor(hover=True) plt.show()
YOu can get something like