plotScan {oce} | R Documentation |
Plot CTD data as time-series against scan number, to help with trimming extraneous data from a CTD cast.
plotScan(x, which=1, type='l', mgp=getOption("oceMgp"), mar=c(mgp[1]+1.5,mgp[1]+1.5,mgp[1],mgp[1]), ...)
x |
A |
which |
A vector containing numerical codes specifying the panels to
draw: 1 for pressure vs scan, 2 for |
type |
line type |
mgp |
3-element numerical vector to use for |
mar |
value to be used with |
... |
optional arguments passed to plotting functions. |
Plots ctd
data as time-series against the scan number, as an
aide to trimming to downcasts, etc.
Dan Kelley
summary.ctd
summarizes a ctd
object
plot.ctd
plot summary diagram of ctd
object.
read.ctd
scans ctd
object from a file.
library(oce) data(ctdRaw) plotScan(ctdRaw) abline(v=c(130, 350), col='red') # useful for ctdTrim()