loadDelayed | R Documentation |
Load a DelayedMatrix object from a location within a HDF5 file.
loadDelayed(file, path = "delayed")
file |
String containing a path to a HDF5 file. |
path |
String containing a path inside a HDF5 file containing the DelayedMatrix. |
A DelayedMatrix containing the contents at path
.
Aaron Lun
knownOperations
and knownArrays
, to modify the loading procedure.
library(HDF5Array)
X <- rsparsematrix(100, 20, 0.1)
Y <- DelayedArray(X)
Z <- log2(Y + 1)
temp <- tempfile(fileext=".h5")
saveDelayed(Z, temp)
loadDelayed(temp)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.