subset,oce-method {oce} | R Documentation |
This is a basic class for general oce objects. It has specialised
versions for most sub-classes, e.g. subset,ctd-method
for ctd
objects.
## S4 method for signature 'oce' subset(x, subset, ...)
x |
An oce object. |
subset |
A logical expression indicating how to take the subset; the form depends on the sub-class. |
... |
Ignored. |
An oce object.
library(oce) data(ctd) # Select just the top 10 metres (pressure less than 10 dbar) top10 <- subset(ctd, pressure < 10) par(mfrow=c(1, 2)) plotProfile(ctd) plotProfile(top10)