ComeçarComece de graça

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 exercício faz parte do curso

Introduction to Polars

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

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

print(artist_means)
Editar e executar o código