IniziaInizia gratis

Building a correlation matrix

Now that you've ranked albums, the strategy team wants to understand which metrics move together. The Spotify dataset has been enriched with streams_billions and streams_per_listener columns. Build a correlation matrix to spot strong and weak relationships between these numeric features.

polars is loaded as pl. The DataFrame spotify with additional columns is preloaded for you.

Questo esercizio fa parte del corso

Data Transformation with Polars

Visualizza il corso

Istruzioni dell'esercizio

  • Pick five numeric columns: streams_billions, monthly_listeners, streams_per_listener, duration_ms, and popularity, and compute the correlation.
  • Add a metric column to the result for better readability.

Esercizio pratico interattivo

Prova a risolvere questo esercizio completando il codice di esempio.

# Build a correlation matrix from selected columns
corr = spotify.____(
    "streams_billions",
    "monthly_listeners",
    "streams_per_listener",
    "duration_ms",
    "____",
).____()

# Add a metric column for row labels
result = corr.with_columns(pl.Series("____", corr.columns))

print(result)
Modifica ed esegui il codice