print.summary.plsRmodel: Print method for summaries of plsR models

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

print.summary.plsRmodelR Documentation

Print method for summaries of plsR models

Description

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

Usage

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

Arguments

x

an object of the class "summary.plsRmodel"

...

not used

Value

language

call of the model

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). Comparaison de la régression PLS et de la régression logistique PLS : application aux données d'allélotypage. Journal de la Société Française de Statistique, 151(2), pages 1-18. http://publications-sfds.math.cnrs.fr/index.php/J-SFdS/article/view/47

See Also

print and summary

Examples


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


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