pandas HDFStore - how to reopen?

前端 未结 3 1033
天命终不由人
天命终不由人 2021-02-12 11:22

I created a file by using:

store = pd.HDFStore(\'/home/.../data.h5\')

and stored some tables using:

store[\'firstSet\'] = df1
s         


        
3条回答
  •  再見小時候
    2021-02-12 11:51

    I had the same problem and finally fixed it by installing the pytables module (next to the pandas modules which I was using):

    conda install pytables

    which got me numexpr-2.4.3 and pytables-3.2.0

    After that it worked. I am using pandas 0.16.2 under python 2.7.9

提交回复
热议问题