plsda_loading | R Documentation |
This function computes partial least squares discriminant analysis (PLS-DA) loading from the result of the 'pls_da' function.
plsda_loading(plsda)
plsda |
The following variables (P,T) are included in the plsda object. P: A matrix containing the PLS-DA loadings for each explanatory variable in the columns, before transformation. T : A matrix with PLS-DA score for explanatory variable in each column |
The PLS-DA loading and the p-value by statistical hypothesis testing is added to the pls object returned by the 'pls_da' function in this package.
The return value is a list object that contains the following elements:
R : PLS-DA loading (Correlation coefficient between PLS-DA score of explanatory variable and each variables in data matrix.)
p.value : p-value of PLS-DA loading
Hiroyuki Yamamoto
Yamamoto, H. et al., Dimensionality reduction for metabolome data using PCA, PLS, OPLS, and RFDA with differential penalties to latent variables", Chemom. Intell. Lab. Syst., 98 (2009)
data(whhl)
X <- whhl$X$liver
Y <- whhl$Y
plsda <- pls_da(X,Y,2)
plsda <- plsda_loading(plsda)
plsda$loading$R
plsda$loading$p.value
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.