h5_createFile | R Documentation |
R function to create an empty HDF5 file.
h5createFile(file)
file |
The filename of the HDF5 file. |
Creates an empty HDF5 file.
Returns (invisibly) TRUE
is file was created successfully and FALSE
otherwise.
Bernd Fischer
h5createGroup()
, h5createDataset()
,
h5read()
, h5write()
, rhdf5
h5File <- tempfile(pattern = "ex_createFile.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.