h5array-package: Implementation of HDF5-backed matrix and array classes

Description Details Author(s) Examples

Description

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.

Details

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 ~~

Author(s)

Paul Theodor Pyl <paul.theodor.pyl@gmail.com>

Maintainer: Paul Theodor Pyl <paul.theodor.pyl@gmail.com>

Examples

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

PaulPyl/h5array documentation built on May 8, 2019, 12:57 a.m.