OHLCVデータ同様、timestampカラムを特徴量として扱えるようにしたい
解決したいこと
GMOよりBTCのヒストリカルデータを取得してきたのですが、
そこにあるtimestampカラムを抽出して特徴量として扱えるようにしたいのですが、
keyerrorになってしまいます。
カラムの一つとして扱えるようにはどのような処理を加えたら良いのか教えていただけたら幸いです。
発生している問題・エラー
KeyError Traceback (most recent call last)
File ~/.pyenv/versions/anaconda3-2021.11/lib/python3.9/site-packages/pandas/core/indexes/base.py:3621, in Index.get_loc(self, key, method, tolerance)
3620 try:
-> 3621 return self._engine.get_loc(casted_key)
3622 except KeyError as err:
File ~/.pyenv/versions/anaconda3-2021.11/lib/python3.9/site-packages/pandas/_libs/index.pyx:136, in pandas._libs.index.IndexEngine.get_loc()
File ~/.pyenv/versions/anaconda3-2021.11/lib/python3.9/site-packages/pandas/_libs/index.pyx:163, in pandas._libs.index.IndexEngine.get_loc()
File pandas/_libs/hashtable_class_helper.pxi:5198, in pandas._libs.hashtable.PyObjectHashTable.get_item()
File pandas/_libs/hashtable_class_helper.pxi:5206, in pandas._libs.hashtable.PyObjectHashTable.get_item()
KeyError: 'timestamp'
0