我有一个my_file.h5
文件,大概包含 HDF5 格式(PyTables)的数据。我尝试使用 pandas 读取此文件:
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'
有人知道我在做什么错吗?问题是否是由于 my*.h5
不是我认为的那样(不是 hdf5 格式的数据)?