初めで、matplotlib.widgetsのCheckButtonsを使ってみましたが、動作がうまくいきましたが、日本語の対応方法が分かりませんでした。ご教授をいただきたいです。よろしくお願いします。
例のcodeは以下です。
Python
1import numpy as np 2import matplotlib.pyplot as plt 3from matplotlib.widgets import CheckButtons 4 5t = np.arange(0.0, 2.0, 0.01) 6s0 = np.sin(2*np.pi*t) 7s1 = np.sin(4*np.pi*t) 8s2 = np.sin(6*np.pi*t) 9 10fig, ax = plt.subplots() 11l0, = ax.plot(t, s0, visible=False, lw=2, color='k', label='グラフ1')# <= 日本語 12l1, = ax.plot(t, s1, visible=False,lw=2, color='r', label='グラフ2')# <= 日本語 13l2, = ax.plot(t, s2, visible=False, lw=2, color='g', label='グラフ3')# <= 日本語 14plt.subplots_adjust(left=0.22) 15 16lines = [l0, l1, l2] 17 18# Make checkbuttons with all plotted lines with correct visibility 19rax = plt.axes([0.05, 0.5, 0.1, 0.15]) 20labels = [str(line.get_label()) for line in lines] 21visibility = [line.get_visible() for line in lines] 22check = CheckButtons(rax, labels, visibility) 23 24 25def func(label): 26 index = labels.index(label) 27 lines[index].set_visible(not lines[index].get_visible()) 28 plt.draw() 29 30check.on_clicked(func) 31 32plt.show()
Python 3.0、Windows10
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/20 03:56