Dataset
Many dataset operations are available through the indexing interface, which is aliased to the functional interface. Below describes the functional interface.
HDF5.create_dataset — Functioncreate_dataset(parent, path, datatype, dataspace; properties...)Arguments
parent-FileorGrouppath- String describing the path of the dataset within the HDF5 filedatatype-DatatypeorTypeor the datasetdataspace-DataspaceorDimsof the datasetproperties- keyword name-value pairs set properties of the dataset
Keywords
There are many keyword properties that can be set. Below are a few select keywords.
chunk-Dimsdescribing the size of a chunk. Needed to apply filters.filters-AbstractVector{<: Filters.Filter}describing the order of the filters to apply to the data. SeeFiltersexternal-Tuple{AbstractString, Intger, Integer}(filepath, offset, filesize)External dataset file location, data offset, and file size. SeeAPI.h5p_set_external.
See also