| plotScan {oce} | R Documentation |
Plot a ctd Object in a Low-Level Fashion
Description
Plot CTD data as time-series against scan number, to help with trimming extraneous data from a CTD cast.
Usage
plotScan(
x,
which = 1,
xtype = "scan",
flipy = FALSE,
type = "l",
mgp = getOption("oceMgp"),
xlim = NULL,
ylim = NULL,
mar = c(mgp[1] + 1.5, mgp[1] + 1.5, mgp[1], mgp[1]),
...,
debug = getOption("oceDebug")
)
Arguments
x |
a ctd object. |
which |
integer specifying the plot to be drawn: 1
for pressure vs 'x', 2 for |
xtype |
Character string indicating variable for the x axis. The
permitted values are |
flipy |
Logical value, ignored unless |
type |
Character indicating the line type, as for |
mgp |
Three-element numerical vector to use for par |
xlim |
Limits on the x value. The default, |
ylim |
Limits on the y value. The default, |
mar |
Four-element vector be used with par |
... |
Optional arguments passed to plotting functions. |
debug |
an integer specifying whether debugging information is
to be printed during the processing. This is a general parameter that
is used by many |
Historical Note
On 2022-12-07, xtype was expanded to include "index", and
an undocumented multi-panel feature was removed.
Author(s)
Dan Kelley
See Also
Other functions that plot oce data:
download.amsr(),
plot,adp-method,
plot,adv-method,
plot,amsr-method,
plot,argo-method,
plot,bremen-method,
plot,cm-method,
plot,coastline-method,
plot,ctd-method,
plot,gps-method,
plot,ladp-method,
plot,landsat-method,
plot,lisst-method,
plot,lobo-method,
plot,met-method,
plot,odf-method,
plot,rsk-method,
plot,satellite-method,
plot,sealevel-method,
plot,section-method,
plot,tidem-method,
plot,topo-method,
plot,windrose-method,
plot,xbt-method,
plotProfile(),
plotTS(),
tidem-class
Other things related to ctd data:
CTD_BCD2014666_008_1_DN.ODF.gz,
[[,ctd-method,
[[<-,ctd-method,
as.ctd(),
cnvName2oceName(),
ctd-class,
ctd.cnv.gz,
ctdDecimate(),
ctdFindProfilesRBR(),
ctdFindProfiles(),
ctdRaw,
ctdRepair(),
ctdTrim(),
ctd_aml.csv.gz,
ctd,
d200321-001.ctd.gz,
d201211_0011.cnv.gz,
handleFlags,ctd-method,
initialize,ctd-method,
initializeFlagScheme,ctd-method,
oceNames2whpNames(),
oceUnits2whpUnits(),
plot,ctd-method,
plotProfile(),
plotTS(),
read.ctd.aml(),
read.ctd.itp(),
read.ctd.odf(),
read.ctd.odv(),
read.ctd.saiv(),
read.ctd.sbe(),
read.ctd.ssda(),
read.ctd.woce.other(),
read.ctd.woce(),
read.ctd(),
setFlags,ctd-method,
subset,ctd-method,
summary,ctd-method,
woceNames2oceNames(),
woceUnit2oceUnit(),
write.ctd()
Examples
library(oce)
data(ctdRaw)
plotScan(ctdRaw)
abline(v = c(130, 350), col = "red") # useful for ctdTrim()