powered by
The function simplsca performs the SIMPLS Canonical Analysis algorithm as described in Michel Tenenhaus book La Regression PLS, chapter 5.
simplsca
simplsca(X, Y, comps = 2)
An object of class "simplsca", basically a list with the following elements:
"simplsca"
scores of the X-block (also known as T components)
weights of the X-block
scores of the Y-block (also known as U components)
weights of the Y-block
correlations between X and T
correlations between Y and U
correlations between X and U
correlations between Y and T
correlations between T and U
explained variance of X by T
explained variance of Y by T
explained variance of Y by U
explained variance of X by U
Numeric matrix or data frame with two or more columns (X-block).
Numeric matrix or data frame with two or more columns (Y-block).
Number of components to be extracted. (TRUE by default).
TRUE
Gaston Sanchez
No missing data are allowed.
Tenenhaus, M. (1998) La Regression PLS. Theorie et Pratique. Paris: Editions TECHNIP.
plot.simplsca, simpls
plot.simplsca
simpls
if (FALSE) { # load data linnerud data(linnerud) # apply inter-battery method my_simca = simplsca(linnerud[,1:3], linnerud[,4:6]) # plot variables plot(my_simca, what="variables") }
Run the code above in your browser using DataLab