subset: Subset modes in EotStacks

subsetR Documentation

Subset modes in EotStacks

Description

Extract a set of modes from an EotStack

Usage

## S4 method for signature 'EotStack'
subset(x, subset, drop = FALSE, ...)

## S4 method for signature 'EotStack,ANY,ANY'
x[[i]]

Arguments

x

EotStack to be subset

subset

integer or character. The modes to ectract (either by integer or by their names)

drop

if TRUE a single mode will be returned as an EotMode

...

currently not used

i

number of EotMode to be subset

Value

an Eot* object

Examples

data(vdendool)

nh_modes <- eot(x = vdendool, y = NULL, n = 3, 
                standardised = FALSE, 
                verbose = TRUE)
                
subs <- subset(nh_modes, 2:3) # is the same as
subs <- nh_modes[[2:3]]

## effect of 'drop=FALSE' when selecting a single layer
subs <- subset(nh_modes, 2)
class(subs)
subs <- subset(nh_modes, 2, drop = TRUE)
class(subs)


environmentalinformatics-marburg/remote documentation built on July 5, 2023, 4:36 p.m.