h5_createGroup | R Documentation |
Creates a group within an HDF5 file.
h5createGroup(file, group)
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 H5IdComponent representing a H5 location identifier
(file or group). See |
group |
The name of the new group. The name can contain a hierarchy of
groupnames, e.g. |
Creates a new group within an HDF5 file.
Returns TRUE is group was created successfully and FALSE otherwise.
Bernd Fischer
h5createFile()
, h5createDataset()
,
h5read()
, h5write()
h5File <- tempfile(pattern = "ex_createGroup.h5")
h5createFile(h5File)
# create groups
h5createGroup(h5File, "foo")
h5createGroup(h5File, "foo/foobaa")
h5ls(h5File)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.