新的等效的hdf5load

时间:2016-01-29 23:26:56

标签: r pointers hdf5 hdf

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

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

其中h5file是要读入的HDF5文件。可以通过这种方式解决问题:

variable = h5read (h5file, "element")

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

有没有办法让像h5pointer这样的对象从后面取消引用它的元素?

1 个答案:

答案 0 :(得分:0)

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