我的脚本正在执行以下操作:
trc
文件读取时间序列(UHF测量)pd.DataFrame
DataFrames
保存到一个hdf5
文件中这很好用,但是tables
模块似乎为每个NaturalNameWarning
抛出一个DataFrame
。
这是DataFrames
保存到hdf5
的地方:
num = 0
for idx, row in df_oszi.iloc[peaks].iterrows():
start_peak = idx - 1*1e-3
end_peak = idx + 10*1e-3 #tges=11us
df_pos = df_oszi[start_peak:end_peak]
df_pos.to_hdf('pos.h5', key=str(num))
num += 1
输出:
Warning (from warnings module):
File "C:\Users\Artur\AppData\Local\Programs\Python\Python37\lib\site-packages\tables\path.py", line 157
check_attribute_name(name)
NaturalNameWarning: object name is not a valid Python identifier: '185'; it does not match the pattern ``^[a-zA-Z_][a-zA-Z0-9_]*$``; you will not be able to use natural naming to access this object; using ``getattr()`` will still work, though
答案 0 :(得分:2)
只要您不打算真正使用表访问,您就可以随时执行此操作。
import warnings
from tables import NaturalNameWarning
warnings.filterwarnings('ignore', category=NaturalNameWarning)
答案 1 :(得分:1)
这是一个警告。这意味着您不能使用PyTables自然命名约定来访问名为185
的数据集。如果您不打算使用PyTables,这不是问题。如果要使用PyTables,则必须使用File.get_node(where)
来访问此组名。
两种方法的比较(其中h5f是我的HDF5文件对象):
h5f.get_node('/185') # works
tb1nn = h5f.root.185 # gives Python invalid syntax error
将组名更改为t185
,然后可以使用自然命名。
请参见下面的示例PyTables代码以显示差异:
import tables as tb
import numpy as np
arr = np.arange(10.)
ds_dt = ds_dt= ( [ ('f1', float) ] )
rec_arr = np.rec.array(arr,dtype=ds_dt)
with tb.File('natname.h5','w') as h5f:
tb1 = h5f.create_table('/','t185',obj=rec_arr)
tb1nn = h5f.root.t185
print (tb1nn.nrows)
tb2 = h5f.create_table('/','185',obj=rec_arr)
# tb2nn = h5f.root.185 # will give Python syntax error
tb2un = h5f.get_node('/185')
print (tb2un.nrows)