Retrieve object from a group of file
# S3 method for class 'H5Group'
`[[`(x, name, ..., link_access_pl = h5const$H5P_DEFAULT,
dataset_access_pl = h5const$H5P_DEFAULT,
type_access_pl = h5const$H5P_DEFAULT)
# S3 method for class 'H5File'
`[[`(x, name, ..., link_access_pl = h5const$H5P_DEFAULT,
dataset_access_pl = h5const$H5P_DEFAULT,
type_access_pl = h5const$H5P_DEFAULT)
# S3 method for class 'H5Group'
x[[name, ...]] <- value
# S3 method for class 'H5File'
x[[name, ...]] <- value
Name of the object to retrieve. Has to be a character vector of length one. No integer values allowed.
Currently ignored
An object of class H5P_LINK_ACCESS
.
An object of class H5P_DATASET_ACCESS
.
Currently always h5const$H5P_DEFAULT
Works similar to retrieving objects in a list. x[["my_name"]]
retrieves object my_name
from the
HDF5-File or HDF5-Group x
.
One can also assign objects under a not yet existing name. For either a H5Group
or H5D
,
a hard link is created. If it is a datatype, H5T
, this is committed under the chosen name name
.