如何使用 h5py 在文件中创建Datatype
元素?
我试图将HDF5文件的元素复制到另一个文件,以便只捕获一小部分元素。我可以获取Dataset
和Group
元素,但我在复制Datatype
元素时遇到困难。
outFile.create_dataset(dataSetName, (400, 2, 10), data=dataGroups[:400,:,:10]) # success!!!
typeGroup = outFile.create_group('Types') # success!!!
outfile['myDataType'] = inFile['myDataType'] # fail
# what's the magic call to create a Datatype object - there's no create_datatype()
并且,Datatype
,其中一个元素显示在 HDFView 中。