Datasets — h5py 3.5.0 documentation
docs.h5py.org › en › stableDatasets — h5py 3.4.0 documentation Datasets ¶ Datasets are very similar to NumPy arrays. They are homogeneous collections of data elements, with an immutable datatype and (hyper)rectangular shape. Unlike NumPy arrays, they support a variety of transparent storage features such as compression, error-detection, and chunked I/O.
Quick Start Guide — h5py 3.5.0 documentation
docs.h5py.org › en › stableRemember h5py.File acts like a Python dictionary, thus we can check the keys, >>> list(f.keys()) ['mydataset'] Based on our observation, there is one data set, mydataset in the file. Let us examine the data set as a Dataset object >>> dset = f['mydataset'] The object we obtained isn’t an array, but an HDF5 dataset .
Attributes — h5py 3.5.0 documentation
docs.h5py.org › en › stableThe default track_order for all new groups and datasets can be specified globally with h5.get_config ().track_order. Reference ¶ class h5py.AttributeManager(parent) ¶ AttributeManager objects are created directly by h5py. You should access instances by group.attrs or dataset.attrs, not by manually creating them. __iter__() ¶