Learn R Programming

remote (version 1.2.1)

subset: Subset modes in EotStacks

Description

Extract a set of modes from an EotStack

Usage

"subset"(x, subset, drop = FALSE, ...)
"[["(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

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