假设我有一个具有组层次结构的 HDF5 文件 (myHDF.h5),例如:
/root/groupA
/groupB
现在我想将一个DataFrame
(myFrame) 添加到 groupA (以及一些其他对象,例如字典)。我怎么做?如果我打开我的 HDF.h5 pandas.io.HDFStore
:
store = pandas.io.HDFStore('myHDF.h5')
然后尝试:
store['groupA']['myFrame'] = myFrame
我得到:
AttributeError: Attribute 'pandas_type' does not exist in node: '/groupA'
这样做的正确方法是什么?