matplotlibインタラクティブでクリックした座標に×印をプロットしたいのですが、ネット上のソースコードを実行しても、グラフが表示されるだけでプロットできません。
わかる方、ご教授よろしくお願いします。
python
1import matplotlib.pyplot as plt 2 3def motion(event): 4 x = event.xdata 5 y = event.ydata 6 7 ln.set_data(x,y) 8 plt.draw() 9 10plt.figure() 11ln, = plt.plot([],[],'x') 12 13plt.connect('motion_notify_event', motion) 14plt.show()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/04 11:42