ComeçarComece de graça

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 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.

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

print(year_artist_means)
Editar e executar o código