Eigenanalyses of Combine Data
Now that you have looked at and understand the contents of B
, you can study its eigen data to see if there is a chance to reduce the dimension of your data down from eight columns to something smaller. B
is loaded for you.
Cet exercice fait partie du cours
Linear Algebra for Data Science in R
Instructions
- Find all of the eigen data of
B
and assign them toV
. - Print the eigenvalues.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Find the eigen data of B
V <- ___
# Print eigenvalues
___