getWeightMN {ropls} | R Documentation |
(Orthogonal) weights of the (O)PLS(-DA) model
getWeightMN(object, ...) ## S4 method for signature 'opls' getWeightMN(object, orthoL = FALSE)
object |
An S4 object of class |
... |
Currently not used. (default is FALSE and the predictive weight matrix is returned) |
orthoL |
Logical: Should the orthogonal weight matrix be returned |
Numeric matrix with a number of rows equal to the number of variables and a number of columns equal to the number of components
Etienne Thevenot, etienne.thevenot@cea.fr
data(sacurine) attach(sacurine) sacurine.plsda <- opls(dataMatrix, sampleMetadata[, "gender"]) getWeightMN(sacurine.plsda) detach(sacurine)