错误从pandas python读取.h5文件

时间:2017-06-14 08:55:35

标签: windows python-3.x pandas jupyter

我正在尝试通过在jupyter python中使用pandas来读取.h5文件中的数据,但是我遇到了错误。

在.h5文件中,有两种类型,“timestamp:compound / Vdta”,“data:16-bit integer”

enter image description here

但是pandas只识别.h5文件中“存储”后的时间戳。

import pandas as pd
filename = 'C://HDF/test.h5'
store = pd.HDFStore(filename)
print (store.is_open)
>> True
print (store)
>> <bound method HDFStore.open of <class 'pandas.io.pytables.HDFStore'>
>> File path: C://5G/HDF/case_6.h5
>> BFN/timestamp                                              frame_table [0.0.0] (typ->generic,nrows->409,ncols->2,indexers->[index],dc->[core,epoch]

有没有想过在熊猫中读取“数据”?

0 个答案:

没有答案