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.
Diese Übung ist Teil des Kurses
Linear Algebra for Data Science in R
Anleitung zur Übung
- Find all of the eigen data of
B
and assign them toV
. - Print the eigenvalues.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Find the eigen data of B
V <- ___
# Print eigenvalues
___