View source: R/coef.plsRmodel.R
coef.plsRmodel | R Documentation |
This function provides a coef method for the class "plsRmodel"
## S3 method for class 'plsRmodel'
coef(object, type = c("scaled", "original"), ...)
object |
an object of the class |
type |
if |
... |
not used |
An object of class coef.plsRmodel
.
CoeffC |
Coefficients of the components. |
Std.Coeffs |
Coefficients of the scaled predictors. |
Coeffs |
Coefficients of the untransformed predictors (on their original scale). |
Frédéric Bertrand
frederic.bertrand@utt.fr
https://fbertran.github.io/homepage/
coef
data(Cornell)
XCornell<-Cornell[,1:7]
yCornell<-Cornell[,8]
modpls <- plsRglm(yCornell,XCornell,3,modele="pls")
class(modpls)
coef(modpls)
coef(modpls,type="scaled")
rm(list=c("XCornell","yCornell","modpls"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.