Skip to contents

This function creates a new, empty HDF5 file at the specified location.

Usage

create_hdf5_file(hdf5_file)

Arguments

hdf5_file

A character string specifying the path and name of the HDF5 file to be created.

Value

No return value; the function creates the HDF5 file at the specified location.

Examples

# Create an empty HDF5 file
hdf5_file <- tempfile()
create_hdf5_file(hdf5_file)