getBaseline | R Documentation |
The functions extract the baseline
, spectra
,
corrected
or call
slot of a baseline
object; usually the result of a call to baseline
.
getBaseline(object)
getSpectra(object)
getCorrected(object)
getCall(object)
object |
A |
getCall
returns the baseline
call used to create the
object. The other functions return a matrix with the original
spectra, estimated baselines or corrected spectra.
In a future versoion, one of the slots might be
removed from the class definition and calculated on the fly instead,
in order to save space. Therefore, do use the extractor
functions (getSpectra
, getBaseline
and
getCorrected
) instead of accessing the slots directly.
Bjørn-Helge Mevik and Kristian Hovde Liland
The function baseline
, the class baseline
data(milk)
bl <- baseline(milk$spectra[1:2,])
baseline <- getBaseline(bl)
spectra <- getSpectra(bl)
corrected <- getCorrected(bl)
call <- getCall(bl)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.