scree | R Documentation |
A set of functions around PCA/LDA eigen/trace. scree
calculates their proportion and cumulated proportion;
scree_min
returns the minimal number of axis to use to retain a given proportion; scree_plot
displays a screeplot.
scree(x, nax)
## S3 method for class 'PCA'
scree(x, nax)
## S3 method for class 'LDA'
scree(x, nax)
scree_min(x, prop)
scree_plot(x, nax)
x |
a PCA object |
nax |
numeric range of axes to consider.
All by default for |
prop |
numeric how many axes are enough to gather this proportion of variance. Default to 1, all axes are returned defaut to 1: all axis are returned |
scree returns a data.frame, scree_min a numeric, scree_plot a ggplot.
# On PCA
bp <- PCA(efourier(bot))
scree(bp)
scree_min(bp, 0.99)
scree_min(bp, 1)
scree_plot(bp)
scree_plot(bp, 1:5)
# on LDA, it uses svd
bl <- LDA(PCA(opoly(olea)), "var")
scree(bl)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.