Learn R Programming

ropls (version 1.4.2)

residuals.opls: Residuals method for (O)PLS models

Description

Returns the residuals from the (O)PLS(-DA) regression models

Usage

"residuals"(object, ...)

Arguments

object
An S4 object of class opls, created by opls function.
...
Currently not used.

Value

Numeric matrix or vector (same dimensions as the modeled y response); if y is a character vector or a factor (in case of classification), the residuals equal 0 (predicted class identical to the true class) or 1 (prediction error)

Examples

Run this code

data(sacurine)
attach(sacurine)

sacurine.pls <- opls(dataMatrix,
                     sampleMetadata[, "age"])

head(residuals(sacurine.pls))

detach(sacurine)

Run the code above in your browser using DataLab