Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/explained_variance.R
This function calculates the variance explained by variates.
1 | explained_variance(data, variates, ncomp)
|
data |
numeric matrix of predictors |
variates |
variates as obtained from a |
ncomp |
number of components. Should be lower than the number of
columns of |
explained_variance
calculates the explained variance of each variates
out of the total variance in data
.
explained_variance
simply returns the explained variance for
each variate.
Florian Rohart
spls
, splsda
, plotIndiv
,
plotVar
, cim
, network
.
1 2 3 4 5 6 7 8 9 10 11 12 | ## Not run:
X <- liver.toxicity$gene
Y <- liver.toxicity$clinic
toxicity.spls <- spls(X, Y, ncomp = 2, keepX = c(50, 50), keepY = c(10, 10))
ex = explained_variance(toxicity.spls$X, toxicity.spls$variates$X, ncomp =2)
# ex should be the same as
toxicity.spls$explained_variance$X
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.