plot.plsreg1 {plspm} | R Documentation |
Plot method for objects of class "plsreg1"
## S3 method for class 'plsreg1': plot(x, ...)
x |
An object of class "plsreg1" returned by plsreg1 . |
... |
Further arguments are ignored. |
The function plot.plsreg1
displays four plots:
1) the circle of correlations between the variables and the first two components (scores)
2) the plot of components (t1,t2) and the plot of components (t1,u1)
3) the plot of T2 Hotelling Confidence ellipse
4) the dot chart comparing the response variable (Y) with the predicted values (Y-predicted)
Gaston Sanchez
## Not run: ## example of plsreg1 data(vehicles) pls1 <- plsreg1(vehicles[,1:12], vehicles[,13]) plot(pls1) ## End(Not run)