Description Details Author(s) Examples
This package provides two classes (h5array and h5matrix) which can be used like normal arrays or matrices, but store their data on disk in an HDF5 file. This is usefull for realy big datasets.
The DESCRIPTION file:
This package was not yet installed at build time.
Index: This package was not yet installed at build time.
~~ An overview of how to use the package, including the most important ~~
~~ functions ~~
Paul Theodor Pyl <paul.theodor.pyl@gmail.com>
Maintainer: Paul Theodor Pyl <paul.theodor.pyl@gmail.com>
1 2 3 4 5 6 7 | fn <- tempfile()
x <- h5arrayCreate(fn, "/Data", c(12,3), "double")
y <- h5array(fn, "/Data") #pointing to the same location in the HDF5 file
x
y[1,] <- 23 #assignment to y
y #y is changed
x #x is also changed
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.