Pandas 有一个很好的界面,便于在 HDF5 中存储诸如 Dataframes 和 Series 之类的东西:
random_matrix = np.random.random_integers(0,10, m_size)
my_dataframe = pd.DataFrame(random_matrix)
store = pd.HDFStore('some_file.h5',complevel=9, complib='bzip2')
store['my_dataframe'] = my_dataframe
store.close()
但是,如果我尝试将其他一些常规 Python 对象保存在同一个文件中,它会抱怨:
my_dictionary = dict()
my_dictionary['a'] = 2 # <--- ERROR
my_dictionary['b'] = [2,3,4]
store['my_dictionary'] = my_dictionary
store.close()
和
TypeError: cannot properly create the storer for: [_TYPE_MAP] [group->/par
ameters (Group) u'',value-><type 'dict'>,table->None,append->False,kwargs-
>{}]
如何将常规 Python 数据结构存储在存储其他 Pandas 对象的同一个 HDF5 中?