LoslegenKostenlos loslegen

2017 WNBA Ratings!

Now that we have our Massey matrix in a form for which is invertible, we can now use it to find the ratings for the WNBA teams at the conclusion of 2017!

M and an updated version of f are loaded for you.

Diese Übung ist Teil des Kurses

Linear Algebra for Data Science in R

Kurs anzeigen

Anleitung zur Übung

  • Solve for r using the inverse of M.
  • The vectorr is the final ratings for the WNBA teams. Print r.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Solve for r and rename column
r <- ___%*%___
colnames(r) <- "Rating"

# Print r
___
Code bearbeiten und ausführen