当使用 pandas.to_hdf 函数将数据保存到 HDF5 文件时,我收到以下警告:
C:\{my path to conda environment}\lib\site-packages\tables\file.py:426:
UserWarning: a closed node found in the registry: ``/{my object key}/meta/{my column name}/meta/_i_table``
warnings.warn("a closed node found in the registry: "
Run Code Online (Sandbox Code Playgroud)
我无法通过谷歌搜索这个警告可能意味着什么,并且查看相关的 PyTables 文档也没有帮助。
有人有想法吗?
细节:
to_hdf(filename, key, mode = mode, complib='blosc', format = 'table', append = True),其中模式为“w”或“a”(在两种情况下都会引发警告)。