ComenzarEmpieza gratis

Group-by aggregation

You want to analyze the Spotify streaming data to understand which artists are most popular. Start with a simple group-by operation and then refine it to control the output order.

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.

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

print(artist_means)
Editar y ejecutar código