saveDelayedObject,DelayedNaryIsoOp-method | R Documentation |
Save a DelayedNaryIsoOp object into a HDF5 file. See the “Binary ...” operations at https://artifactdb.github.io/chihaya/ for more details.
## S4 method for signature 'DelayedNaryIsoOp'
saveDelayedObject(x, file, name)
x |
A DelayedNaryIsoOp object. |
file |
String containing the path to a HDF5 file. |
name |
String containing the name of the group to save into. |
A NULL
, invisibly.
A group is created at name
containing the contents of the DelayedNaryIsoOp.
Aaron Lun
X <- DelayedArray(matrix(runif(100), ncol=5))
Y <- DelayedArray(matrix(runif(100), ncol=5))
Z <- X * Y
temp <- tempfile(fileext=".h5")
saveDelayed(Z, temp)
rhdf5::h5ls(temp)
loadDelayed(temp)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.