参考動画のように実行したいのですが、以下のエラーが出てしまいます。問題の時間は、13:00分です。
スペル間違いなのか、ローマ字での記載は気をつけているのですが、ご指摘よろしくお願い致します。
Python
1plt.figure(figsize=(30, 15)) 2plt.subplot(2,1,1) 3 4plt.plot(date,close,label='Close',color='#99b898') 5plt.plot.legend() 6 7plt.subplot(2,1,2) 8plt.fill_between(date, df['macdhist'], color = 'grey', alpha=0.5, label='MACD_hist') 9plt.hlines(0,start,end,"gray",linestyles="dashed") 10plt.legend() 11
↓
AttributeError Traceback (most recent call last) <ipython-input-46-36744f322bf3> in <module> 3 4 plt.plot(date,close,label='Close',color='#99b898') ----> 5 plt.plot.legend() 6 7 plt.subplot(2,1,2) AttributeError: 'function' object has no attribute 'legend'
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/18 14:39