Create an HDF5 file
Usage
H5Fcreate(
name,
flags = h5default("H5F_ACC"),
fcpl = NULL,
fapl = NULL,
native = FALSE
)Arguments
- name
The name of the HDF5 file to create.
- flags
See
h5const("H5F_ACC")for possible arguments.- fcpl, fapl
Object object of class H5IdComponent. This should representing a file creation property list and a file access property list respectively. See
H5Pcreate()orH5Pcopy()to create objects of this kind. Leaving asNULLwill use the default HDF5 settings which are often sufficient.- native
An object of class
logical. IfTRUE, array-like objects are treated as stored in HDF5 row-major rather than R column-major orientation. Usingnative = TRUEincreases HDF5 file portability between programming languages. A file written withnative = TRUEshould also be read withnative = TRUE.