Last chance! 50% off unlimited learning
Sale ends in
Extract data corresponding to a particular dive(s), referred to by number.
# S4 method for TDR,numeric,numeric
extractDive(obj, diveNo, id)# S4 method for TDRcalibrate,numeric,missing
extractDive(obj, diveNo)
An object of class TDR
or TDRspeed
.
TDR
object.
numeric vector or scalar with dive numbers to extract. Duplicates are ignored.
numeric vector or scalar of dive numbers from where
diveNo
should be chosen.
obj = TDR,diveNo = numeric,id = numeric
: Extract data on TDR object
obj = TDRcalibrate,diveNo = numeric,id = missing
: Extract data on TDRcalibrate object
Sebastian P. Luque spluque@gmail.com
## Too long for checks
## Continuing the Example from '?calibrateDepth':
utils::example("calibrateDepth", package="diveMove",
ask=FALSE, echo=FALSE, run.donttest=TRUE)
dcalib # the 'TDRcalibrate' that was created
diveX <- extractDive(divesTDR, 9, getDAct(dcalib, "dive.id"))
plotTDR(diveX)
diveX <- extractDive(dcalib, 5:10)
plotTDR(diveX)
Run the code above in your browser using DataLab