0
hdf5 파일에 null 값을 저장하려고합니다.hdf5 테이블에 null 값을 저장하는 방법은 무엇입니까?
h5file = tables.open_file("demo.h5", mode="w", title="demo")
group = h5file.create_group('/', 'depth','Dept Data information')
table = h5file.create_table(group, 'readout', depthdata , "depth data")
row_data = table.row
for i in range(len(record['local_timestamp'])):
if record['bbno1'][i] is '':
row_data['bbno1'] = NaN
else:
row_data['bbno1'] = record['bbno1'][i]
이 코드는 사용했지만 작동하지 않습니다. NaN과 NULL을 사용했지만 작동하지 않습니다.