hql_create {hdfqlr} | R Documentation |
Create HDF Files, Datasets or Attribute
Description
Create HDF files and groups.
Usage
hql_create_file(file, overwrite = FALSE, parallel = FALSE)
hql_create_group(group, overwrite = FALSE)
Arguments
file |
The HDF file to create. |
overwrite |
If |
parallel |
If |
group |
The group to create. |
Functions
-
hql_create_file
: Create HDF file. -
hql_create_group
: Create HDF group.
Examples
if(hql_is_loaded()) {
tf = tempfile(fileext = ".h5")
hql_create_file(tf)
hql_use_file(tf)
hql_create_group("group1")
hql_close_file(tf)
}
[Package hdfqlr version 0.6-2 Index]