Description Usage Arguments Value Examples
Extract a set of modes from an EotStack
1 2 3 4 5 |
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 |
an Eot* object
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.