Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 13861

Showing information when mouse over on scatter plot

$
0
0

I've been struggling on showing correct information on the scatter plot. Here is a example.

import matplotlib.pyplot as pltimport mplcursorsdata = [    ["Name1", 10, 20],    ["Name2", 30, 40],    ["Name3", 50, 60]]x_values = ["G1", "G2"]y_values = [(row[1], row[2]) for row in data]names = [row[0] for row in data]fig, ax = plt.subplots()scatter_plots = []for i in range(len(data)):    scatter = ax.scatter(x_values, y_values[i])    scatter_plots.append(scatter)ax.set_xlabel("X-axis")ax.set_ylabel("Y-axis")ax.set_title("Scatter Plot")cursor = mplcursors.cursor(scatter_plots, hover=True)cursor.connect("add", lambda sel: sel.annotation.set_text(names[sel.target.index]))plt.show()

In this case, when my cursor moves on each plot(same color), it should show same name. However, due to sel.target.index which indicates x axis in the plot only, it shows wrong name and even I can't get Name3 displayed. I've been looking for a way to handle double array in mouseover case for row but no luck yet. Any good idea to show correct name on each plot when mouse over by indicating row of the array?

I'd like to have correct name displayed corresponding to the data.


Viewing all articles
Browse latest Browse all 13861

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>