library(oce)
# CTD data
data(ctd)
plot(ctd)
plot(subset(ctd, pressure>10))
# ADP example, subsetted by time and distance
data(adp)
adp.near <- subset(adp, distance < 10)
# Note that the data may be accessed directly, as below
adp.near.early <- subset(adp.near, time < mean(adp.near$data$ts$time))
plot(adp.near.early)
Run the code above in your browser using DataLab