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