Description Usage Arguments Details Value Author(s) References See Also Examples
Creates a group within an HDF5 file.
1 |
file |
The filename (character) of the file in which the dataset will be located. For advanced programmers it is possible to provide an object of class |
group |
The name of the new group. The name can contain a hierarchy of groupnames, e.g. 'group1/group2/newgroup', but the function will fail if the top level group do not exists. |
Creates a new group within an HDF5 file.
Returns TRUE is group was created successfully and FALSE otherwise.
Bernd Fischer
https://portal.hdfgroup.org/display/HDF5
h5createFile
, h5createDataset
, h5read
, h5write
, rhdf5
1 2 3 4 5 6 7 | h5createFile("ex_createGroup.h5")
# create groups
h5createGroup("ex_createGroup.h5","foo")
h5createGroup("ex_createGroup.h5","foo/foobaa")
h5ls("ex_createGroup.h5")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.