Get startedGet started for free

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.

This exercise is part of the course

Linear Algebra for Data Science in R

View Course

Exercise instructions

  • Find all of the eigen data of B and assign them to V.
  • Print the eigenvalues.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Find the eigen data of B
V <- ___

# Print eigenvalues
___
Edit and Run Code