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.
Este exercício faz parte do curso
Linear Algebra for Data Science in R
Instruções do exercício
- Find all of the eigen data of
B
and assign them toV
. - Print the eigenvalues.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Find the eigen data of B
V <- ___
# Print eigenvalues
___