检查密钥是否在没有路径的HDF5Store中

时间:2014-01-23 09:45:57

标签: python pandas hdf5 pytables

使用pandas / pytables,可以使用store.keys()轻松返回键列表。

>>> store.keys()
['/df_coord', '/metaFrame']

使用标准字典检查以查看密钥是否存在if 'df_coord' in store.keys():,除非包含/,否则返回false。是否有另一种简单的方法来评估密钥的存在而无需连接字符串?

1 个答案:

答案 0 :(得分:9)

检查商店本身;他们.keys()返回精确键的字符串字典。

In [1]: store = pd.HDFStore('test.h5',mode='w')

In [2]: store['foo'] = DataFrame(np.random.randn(10,2))

In [3]: store['bar'] = DataFrame(np.random.randn(10,2))

In [4]: store
Out[4]: 
<class 'pandas.io.pytables.HDFStore'>
File path: test.h5
/bar            frame        (shape->[10,2])
/foo            frame        (shape->[10,2])

In [5]: 'bar' in store
Out[5]: True

In [6]: 'foo' in store
Out[6]: True

In [7]: '/foo' in store
Out[7]: True

In [8]: 'bah' in store
Out[8]: False