Functions to extract the components of a "baseline" object
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
data(milk) bl <- baseline(milk$spectra[1:2,]) baseline <- getBaseline(bl) spectra <- getSpectra(bl) corrected <- getCorrected(bl) call <- getCall(bl)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.