my_file.h5
おそらく、HDF5 形式 (PyTables) のデータを含むファイルがあります。パンダを使用してこのファイルを読み込もうとしました:
import pandas as pd
store = pd.HDFStore('my_file.h5')
次に、store
オブジェクトを使用しようとします。
print store
その結果、次のようになります。
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/pymodules/python2.7/pandas/io/pytables.py", line 133, in __repr__
kind = v._v_attrs.pandas_type
File "/usr/lib/python2.7/dist-packages/tables/attributeset.py", line 302, in __getattr__
(name, self._v__nodePath)
AttributeError: Attribute 'pandas_type' does not exist in node: '/data'
誰かが私が間違っていることを知っていますか? *.h5
myが実際には私が思っているものではない (hdf5 形式のデータではない)という事実が原因で問題が発生する可能性はありますか?