oandaを使ってfxの予想をしようとしていたのですが、値を代入出来なくて困っています。
python
1plt.figure(figsize=(10,8)) 2plt.plot(df[df['time']>= split_date]['time'][window_len:], 3 test['open'][window_len:], label='Actual', color='blue') 4plt.plot(df[df['time']>= split_date]['time'][window_len:], 5 future_array,label='future',color='green') 6plt.show()
このコードを入力すると次のようなエラーが起きてしまいます。
Eroor
1AssertionError Traceback (most recent call last) 2<ipython-input-16-18fd6c869db9> in <module>() 3 1 plt.figure(figsize=(10,8)) 4 2 plt.plot(df[df['time']>= split_date]['time'][window_len:], 5----> 3 test['open'][window_len:], label='Actual', color='blue') 6 4 plt.plot(df[df['time']>= split_date]['time'][window_len:], 7 5 future_array,label='future',color='green') 8 910 frames 10/usr/local/lib/python3.6/dist-packages/pandas/core/internals/blocks.py in _slice(self, slicer) 11 1770 else: 12 1771 raise AssertionError( 13-> 1772 "invalid slicing for a 1-ndim ExtensionArray", slicer 14 1773 ) 15 1774 16 17AssertionError: ('invalid slicing for a 1-ndim ExtensionArray', (slice(None, None, None), None)) 18
おそらく値がないのでエラーになっていると思うのですが、なぜデータが代入されていないのかわかりません。
下のコードがデータが入っていないデータフレーム(test)です。
python
1df[478:482] 2---------------------------------------------------- 3実行結果: 4 5 time open 6478 2020-12-09 07:00:00+09:00 104.196 7479 2020-12-10 07:00:00+09:00 104.286 8480 2020-12-11 07:00:00+09:00 104.299 9481 2020-12-14 07:00:00+09:00 104.036 10
python
1window_len = 10 2 3split_date = '2021/12/10 07:00:00' 4train=df[df['time'] < split_date] 5test=df[df['time'] >= split_date] 6 7latest = test[:window_len] 8del train['time'] 9del test['time'] 10del latest['time'] 11length = len(test)- window_len 12test["open"] 13-------------------------------------------------- 14実行結果: 15Series([], Name: open, dtype: float64)
なぜ値が入っていないのか教えていただけるとありがたいです。
回答1件
あなたの回答
tips
プレビュー