plot.plsca {plspm} | R Documentation |
Plot method for objects of class "plsca"
## S3 method for class 'plsca': plot(x, ...)
x |
An object of class "plsca" returned by plsca . |
... |
Further arguments are ignored. |
The function plot.plsca
displays four plots:
1) the circles of correlations of the X-scores (T-components) and the Y-scores (U-components)
2) the plot of T-components (t1,t2) and the plot of U-components (u1,u1)
3) barplots of the explained variances and communalities
4) the dot charts with (t1,u1) and (t2,u2)
Gaston Sanchez
## Not run: ## example of PLSCA with the vehicles dataset data(vehicles) can <- plsca(vehicles[,1:12], vehicles[,13:16]) plot(can) ## End(Not run)