DataSet-Extend: Functions to Extend a DataSet

Description Usage Arguments Details

Description

DataSets can be extended with R–objects (e.g. vectors, matrices, arrays) if the following conditions are met:

  1. Datatype of DataSet and R-object are compatible.

  2. Dimensions of DataSet and R-object match (no recycling).

  3. DataSet does not exceed maximum dimensions as specified at creation.

Usage

1
2
3
4
5
6
7
extendDataSet(.Object, dims)

## S4 method for signature 'DataSet,numeric'
extendDataSet(.Object, dims)

## S4 method for signature 'DataSet'
c(x, ..., recursive = FALSE)

Arguments

.Object, x

DataSet; S4 object of class DataSet;

dims

numeric; Dimensions of DataSet.

...

additional arguments passed to c.

recursive

logical; Argument passed to c.

Details

Known base functions have been overloaded to extend vectors (c) and matrices (rbind, cbind). Also the lower–level S4–method extendDataSet can be used to extend existing DataSet objects.


h5 documentation built on May 2, 2019, 3:45 a.m.