pyplot.plot()で描いた複数の折れ線に、それぞれの凡例を付けるには、どうしたら良いでしょうか。
よろしくお願いいたします。
python
1_2016={'新潟':0.146,'北海道':0.205,'大阪':0.184,'岩手':0.195} 2 3_2017={'新潟':0.149,'北海道':0.211,'大阪':0.179,'岩手':0.182} 4 5_2018={'新潟':0.159,'北海道':0.209,'大阪':0.168,'岩手':0.167} 6 7df=pd.DataFrame([_2016,_2017,_2018],index=['2016','2017','2018']) 8df
python
1import matplotlib.pyplot as plt 2plt.plot(df) 3plt.title('実質公債費比率') 4plt.xlabel('年度') 5plt.ylabel('比率') 6plt.show()
◎やったこと
plt.plotの引数にlabelを入れ、plt.legend()
python
1import matplotlib.pyplot as plt 2# 引数にlabelを使った 3plt.plot(df,label=['北海道','大阪','岩手','新潟']) 4plt.title('実質公債費比率') 5plt.xlabel('年度') 6plt.ylabel('比率') 7#plt.legend() 8plt.legend() 9plt.show()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/28 22:02