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 ejercicio forma parte del curso
Linear Algebra for Data Science in R
Instrucciones del ejercicio
- Find all of the eigen data of
B
and assign them toV
. - Print the eigenvalues.
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
# Find the eigen data of B
V <- ___
# Print eigenvalues
___