Read values of all (or selected) datasets
Usage
h5_read_values(
h5,
paths = NULL,
simplify_scalars = TRUE,
timeseries_as_tibble = TRUE,
ts_names = c("time", "value")
)Arguments
- h5
An open
hdf5r::H5File.- paths
character vector; if NULL read all.
- simplify_scalars
logical: simplify scalar datasets to length-1 atoms.
- timeseries_as_tibble
logical: convert 2xN / Nx2 arrays to tibble(time,value).
- ts_names
character(2): names for time/value columns.