subset.lisst {oce} | R Documentation |
Subset a lisst object
## S4 method for signature 'lisst' subset(x, subset, ...)
x |
a |
subset |
a condition to be applied to the |
... |
ignored. |
This function is somewhat analogous to
subset.data.frame
, but subsetting is only permitted by time.
A new lisst
object.
Dan Kelley
library(oce) data(lisst) plot(lisst) plot(subset(lisst, time < mean(range(lisst[['time']]))))