matplotlibにて、下記のコードで書いたグラフにfigureではなくsubplotごとにタイトルを付ける方法をご存知の方がいらっしゃいましたらご教授お願いいたします。。
python
1x = np.arange(0, 6, 0.1) 2y1 = np.sin(x) 3y2 = np.cos(x) 4 5plt.subplot(2,1,1) 6plt.plot(x,y1) 7 8plt.subplot(2,1,2) 9plt.plot(x,y2) 10 11plt.subplot(2,2,1) 12plt.plot(x,y1) 13 14plt.subplot(2,2,2) 15plt.plot(x,y2) 16 17plt.subplot(2,2,3) 18plt.plot(x,y1) 19 20plt.subplot(2,2,4) 21plt.plot(x,y2)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/01/02 00:23