plotSEPmvr {chemometrics} | R Documentation |
Generate plot showing SEP values for Repeated Double Cross Validation
plotSEPmvr(mvrdcvobj, optcomp, y, X, method = "simpls", complete = TRUE, ...)
mvrdcvobj |
object from repeated double-CV, see mvr_dcv |
optcomp |
optimal number of components |
y |
data from response variable |
X |
data with explanatory variables |
method |
the multivariate regression method to be used, see mvr |
complete |
if TRUE the SEPcv values are drawn and computed for the same range of components as included in the mvrdcvobj object; if FALSE only optcomp components are computed and their results are displayed |
... |
additional plot arguments |
After running repeated double-CV, this plot visualizes the distribution of the SEP values.
SEPdcv |
all SEP values from repeated double-CV |
SEPcv |
SEP values from classical CV |
Peter Filzmoser <P.Filzmoser@tuwien.ac.at>
K. Varmuza and P. Filzmoser: Introduction to Multivariate Statistical Analysis in Chemometrics. CRC Press. To appear.
require(pls) data(yarn) res <- mvr_dcv(density~NIR,ncomp=10,data=yarn,method="simpls",repl=10) plot1 <- plotSEPmvr(res,opt=7,yarn$density,yarn$NIR,method="simpls")