Saves a number of R objects to an HDF5 file.
h5save(..., file, name = NULL, createnewfile = TRUE, native = FALSE)The objects to be saved.
The filename (character) of the file in which the dataset will
be located. It is also possible to provide an object of
class H5IdComponent representing a H5 location identifier
(file or group). See H5Fcreate(), H5Fopen(),
H5Gcreate(), H5Gopen() to create an object of this
kind.
A character vector of names for the datasets. The length of the name vector should match the number of objects.
If TRUE, a new file will be created if necessary.
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
Nothing returned.