ComenzarEmpieza gratis

Multiple Aggregations on a Column

You want to analyze the Spotify streaming data to understand how streaming patterns vary across different years and artists. You start with a basic group-by operation and then expand it to include multiple statistics.

The spotify_df DataFrame is available for you.

Este ejercicio forma parte del curso

Introduction to Polars

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

year_artist_means = (
    spotify_df
    # Group by year and artist, calculate average streams
    .group_by(____, ____)
    .agg(____)
)

print(year_artist_means)
Editar y ejecutar código