Learn R Programming

hdfqlr (version 0.6-2)

hql_create: 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 TRUE, overwrite existing file, group, attribute, or dataset.

parallel

If TRUE, use parallel capabilities.

group

The group to create.

Functions

  • hql_create_file: Create HDF file.

  • hql_create_group: Create HDF group.

Examples

Run this code
# NOT RUN {
if(hql_is_loaded()) {
  tf = tempfile(fileext = ".h5")
  hql_create_file(tf)

  hql_use_file(tf)
  hql_create_group("group1")

  hql_close_file(tf)
}

# }

Run the code above in your browser using DataLab