print.coef.plsRmodel: Print method for plsR models

View source: R/print.coef.plsRmodel.R

print.coef.plsRmodelR Documentation

Print method for plsR models

Description

This function provides a print method for the class "coef.plsRmodel"

Usage

## S3 method for class 'coef.plsRmodel'
print(x, ...)

Arguments

x

an object of the class "coef.plsRmodel"

...

not used

Value

NULL

Author(s)

Frédéric Bertrand
frederic.bertrand@utt.fr
https://fbertran.github.io/homepage/

References

Nicolas Meyer, Myriam Maumy-Bertrand et Frédéric Bertrand (2010). Comparing the linear and the logistic PLS regression with qualitative predictors: application to allelotyping data. Journal de la Societe Francaise de Statistique, 151(2), pages 1-18. http://publications-sfds.math.cnrs.fr/index.php/J-SFdS/article/view/47

See Also

print

Examples


data(Cornell)
XCornell<-Cornell[,1:7]
yCornell<-Cornell[,8]
modpls <- plsRglm(yCornell,XCornell,3,modele="pls")
class(modpls)
print(coef(modpls))
rm(list=c("XCornell","yCornell","modpls"))


plsRglm documentation built on March 31, 2023, 11:10 p.m.