Matplotlib - Interactive Features
What will be the output behavior of this code?
import matplotlib.pyplot as plt import mplcursors fig, ax = plt.subplots() line, = ax.plot([1, 2, 3], [4, 5, 6], marker='o') mplcursors.cursor(line) plt.show()
