新的等同于 hdf5load

New equivalent of hdf5load

由于管理 HDF5 格式的标准 R 包已更改为 rhdf5,某些功能不再可用。其中之一是 hdf5load:

h5pointer = hdf5load(file=h5file,load=FALSE,verbosity=0,tidy=TRUE)
variable  = h5pointer$element

其中 h5file 是要读入的 HDF5 文件。可以这样解决问题:

variable = h5read (h5file, "element")

问题是我有大量这些行,所以这意味着要更改很多代码行。

有没有办法得到像 h5pointer 这样的对象,以后我可以从中取消引用其中的元素?

rhdf 2.15.5 起,该实用程序又回来了。要更新 rhdf,您需要 R >= 3.0.0。感谢 Bernd Fisher 添加它。这是 original discussion.