predict: Predict method for (O)PLS models

Description Usage Arguments Value Author(s) Examples

Description

Returns predictions of the (O)PLS(-DA) model on a new dataset

Usage

1
2
## S4 method for signature 'opls'
predict(object, newdata, ...)

Arguments

object

An S4 object of class opls, created by opls function.

newdata

Either a data frame or a matrix, containing numeric columns only, with the same number of columns (variables) as the 'x' used for model training with 'opls'.

...

Currently not used.

Value

Predictions (either a vector, factor, or matrix depending on the y response used for training the model)

Author(s)

Etienne Thevenot, etienne.thevenot@cea.fr

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
data(sacurine)
attach(sacurine)

predictorMN <- dataMatrix
responseFc <- sampleMetadata[, "gender"]

sacurine.plsda <- opls(predictorMN,
                       responseFc,
                       subset = "odd")

trainVi <- getSubsetVi(sacurine.plsda)

table(responseFc[trainVi], fitted(sacurine.plsda))

table(responseFc[-trainVi],
      predict(sacurine.plsda, predictorMN[-trainVi, ]))

detach(sacurine)

SamGG/ropls documentation built on May 29, 2019, 1:51 a.m.