| coef,opls-method {ropls} | R Documentation |
Coefficients of the (O)PLS(-DA) regression model
## S4 method for signature 'opls' coef(object, ...)
object |
An S4 object of class |
... |
Currently not used. |
Numeric matrix of coefficients (number of rows equals the number of variables, and the number of columns equals the number of responses)
Etienne Thevenot, etienne.thevenot@cea.fr
data(sacurine)
attach(sacurine)
sacurine.plsda <- opls(dataMatrix,
sampleMetadata[, "gender"])
head(coef(sacurine.plsda))
detach(sacurine)