Inizia subitoInizia gratis

Custom summaries with describe

To wrap up your analysis of the Spotify dataset, leadership needs a summary that matches their reporting thresholds. Generate statistics for popularity and monthly_listeners with custom percentiles at 10%, 50%, and 90% to capture the full distribution.

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

Questo esercizio fa parte del corso

Data Transformation with Polars

Visualizza corso

Istruzioni dell'esercizio

  • Select the popularity and monthly_listeners columns.
  • Generate a summary with percentiles at 0.10, 0.50, and 0.90.

esercizio interattivo pratico

Prova questo esercizio completando questo codice di esempio.

# Create a summary with custom percentiles
result = spotify.select("____", "____").____(
    percentiles=[____, 0.50, 0.90]
)

print(result)
Modifica ed esegui il codice