やりたいこと
x軸目盛りを45度回転させる。
両サイドのy軸にラベルを付ける
折れ線グラフが前に来るようにする
両サイドのy軸を入れ替える
グラフに題名を付ける
python
1import matplotlib.pyplot as plt 2import pandas as pd 3import io 4df=pd.read_csv('c:\コロナ課題\in\Covid_ts.csv') 5x=df.loc[0:42,"集計日付"] 6y1=df.loc[0:42,"死亡者数7日間平均"] 7y2=df.loc[0:42,"新規感染者数7日間平均"] 8fig = plt.figure() 9ax = fig.add_subplot() 10ax1 = ax.twinx() 11ax.plot(x,y1,color="red") 12ax1.bar(x,y2) 13plt.y1label('死亡者数7日間平均') 14plt.y2label('新規感染者数7日間平均') 15plt.xticks(rotation=45) 16plt.show
エラーメッセージ
AttributeError Traceback (most recent call last)
<ipython-input-57-38232fd44501> in <module>
11 ax.plot(x,y1,color="red")
12 ax1.bar(x,y2)
---> 13 plt.y1label('死亡者数7日間平均')
14 plt.y2label('新規感染者数7日間平均')
15 plt.xticks(rotation=45)
AttributeError: module 'matplotlib.pyplot' has no attribute 'y1label'
見本のグラフと現在できているグラフを載せておきます![(7f73be94dd7bd1303f5bba095883e37b.png)
あなたの回答
tips
プレビュー