Learn R Programming

remote (version 1.2.3)

subset: Subset modes in EotStacks

Description

Extract a set of modes from an EotStack

Usage

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

# S4 method for EotStack,ANY,ANY [[(x, i)

Value

an Eot* object

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

Examples

Run this code
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)

Run the code above in your browser using DataLab