subset {remote} | R 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 |
... |
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)
[Package remote version 1.2.1 Index]