我有一个数据框,df:
datetime bid ask bidvolume askvolume
0 2007-03-30 21:00:00.332000 1.9682 1.9678 4 0.8
试图将其附加到新的数据存储区。数据存储不存在,因此我使用以下内容创建和附加数据;
store = pd.HDFStore(storePath,mode='w')
store.append('data',df)
store.close()
我得到这个错误:就store.append
行了。
TypeError: Cannot serialize the column [bid] because
its data contents are [floating] object dtype
如何让数据正确存储?