powered by
The function simpls performs the SIMPLS Algorithm as described in Michel Tenenhaus book La Regression PLS, chapter 5.
simpls
simpls(X, Y, comps = 2)
An object of class "simpls", basically a list with the following elements:
"simpls"
scores of the X-block (also known as T components)
weights of the X-block
weights of the Y-block
correlations between X and T
correlations between Y and T
explained variance of X by T
explained variance of Y by T
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.
de Jong, S. (1993) SIMPLS: An alternative approach to partial least squares regression. Chemometrics and Intelligent Laboratory Systems, 18: 251-263.
plot.simpls, simplsca
plot.simpls
simplsca
if (FALSE) { # load data linnerud data(linnerud) # apply inter-battery method my_simpls = simpls(linnerud[,1:3], linnerud[,4:6]) # plot variables plot(my_simpls, what="variables") }
Run the code above in your browser using DataLab