plot.nipals {plspm} | R Documentation |
Plot method for objects of class "nipals"
## S3 method for class 'nipals': plot(x, ...)
x |
An object of class "nipals" returned by nipals . |
... |
Further arguments are ignored. |
The function plot.nipals
displays three plots:
1) screeplots of the pseudo eigenvalues
2) the circle of correlations between variables and the first two components (scores)
3) the plot of the two first scores, and the plot of the two first loadings
Gaston Sanchez
## Not run: ## example of NIPALS algorithm data(wines) nip1 <- nipals(wines[,-1], nc=5) plot(nip1) ## End(Not run)