Since the standard R package to manage HDF5 format has changed to rhdf5
, some features are no longer available. One of those is hdf5load
:
h5pointer = hdf5load(file=h5file,load=FALSE,verbosity=0,tidy=TRUE)
variable = h5pointer$element
where h5file
is the HDF5
file to read in. One could solve the problem this way:
variable = h5read (h5file, "element")
The problem is that I have a huge number of those lines so this would mean to change a lot of code lines.
Is there a way to have an object like h5pointer
from which I can later dereference the elements of?