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.
This exercise is part of the course
Introduction to Polars
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
artist_means = (
spotify_df
# Group by artist and calculate average streams
.group_by(____)
.agg(____)
)
print(artist_means)