get_eigenvalues {dimensio} | R Documentation |
Get Eigenvalues
Description
Get Eigenvalues
Usage
get_eigenvalues(x)
get_variance(x, ...)
get_distances(x, ...)
get_inertia(x, ...)
## S4 method for signature 'MultivariateAnalysis'
get_distances(x, margin = 1)
## S4 method for signature 'MultivariateAnalysis'
get_eigenvalues(x)
## S4 method for signature 'PCOA'
get_eigenvalues(x)
## S4 method for signature 'MultivariateAnalysis'
get_inertia(x, margin = 1)
## S4 method for signature 'MultivariateAnalysis'
get_variance(x, digits = 2)
Arguments
x |
An object from which to get element(s) (a |
... |
Currently not used. |
margin |
A length-one |
digits |
An |
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 amount of variance explained by each (principal) component. -
get_distance()
returns anumeric
vector of squared distance to the centroid. -
get_inertia()
returns anumeric
vector giving the inertia (weighted squared distance to the centroid).
Author(s)
N. Frerebeau
See Also
Other getters:
export()
,
get_contributions()
,
get_coordinates()
,
get_data()