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.
Cet exercice fait partie du cours
Introduction to Polars
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
artist_means = (
spotify_df
# Group by artist and calculate average streams
.group_by(____)
.agg(____)
)
print(artist_means)