Get Eigenvalues
Usage
get_eigenvalues(x)
get_inertia(x, ...)
get_variance(x, ...)
# S4 method for MultivariateAnalysis
get_eigenvalues(x)
# S4 method for MultivariateAnalysis
get_inertia(x, margin = 1)
# S4 method for MultivariateAnalysis
get_variance(x, digits = 2)
Arguments
- x
An object from which to get element(s) (a
CA
orPCA
object).- ...
Currently not used.
- margin
A length-one
numeric
vector giving the subscript which the data will be returned:1
indicates individuals/rows (the default),2
indicates variables/columns.- digits
An
integer
indicating the number of decimal places to be used.
Value
get_eigenvalues()
returns adata.frame
with the following columns:eigenvalues
,variance
(percentage of variance) andcumulative
(cumulative percentage of variance).get_variance()
returns anumeric
vector giving the percentage of explained variance of each dimension.get_inertia()
returns anumeric
vector.
See also
Other mutators:
get_contributions()
,
get_coordinates()
,
get_data()
,
get_distances()
,
mutators
,
subset()