h5CreateGroup {hdf5r.Extra} | R Documentation |
Create new HDF5 group
Description
Create new HDF5 group
Usage
h5CreateGroup(x, name, ...)
## S3 method for class 'H5Group'
h5CreateGroup(x, name, show.warnings = TRUE, ...)
## S3 method for class 'H5File'
h5CreateGroup(x, name, show.warnings = TRUE, ...)
## S3 method for class 'character'
h5CreateGroup(x, name, show.warnings = TRUE, ...)
Arguments
x |
|
name |
Name of the new HDF5 group. Can be recursive, such as "g/sub_g". |
... |
Arguments passed to |
show.warnings |
When the group |
Value
This is an operation function and no return. Any failure should raise an error.
See Also
Examples
tmp.file <- tempfile(fileext = ".h5")
h5CreateFile(tmp.file)
h5CreateGroup(tmp.file, "g1")
h5CreateGroup(tmp.file, "g2/g3")
[Package hdf5r.Extra version 0.0.6 Index]