create {hdfqlr} | R Documentation |
Create HDF Object
Description
Generic helper for creating HDF objects.
Usage
create(
what = c("FILE", "GROUP", "DATASET", "ATTRIBUTE"),
path,
data.type,
size,
overwrite = FALSE,
parallel = FALSE
)
create_group(group, overwrite = FALSE)
create_dataset(
dataset,
data.type,
size = NULL,
overwrite = FALSE,
parallel = FALSE
)
create_attribute(
attribute,
data.type,
size = NULL,
overwrite = FALSE,
parallel = FALSE
)
Arguments
what |
The type of object to create. |
path |
The target location of the object. |
data.type |
The HDF data type of the dataset or attribute. |
size |
The size (dimensions) of the dataset or attribute.
For |
overwrite |
If |
parallel |
If |
group |
The group to create. |
dataset |
The dataset to create. |
attribute |
The attribute to create. |
Functions
-
create_group
: Create HDF group. -
create_dataset
: Create HDF dataset. -
create_attribute
: Create HDF attribute.
[Package hdfqlr version 0.6-2 Index]