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.
Diese Übung ist Teil des Kurses
Introduction to Polars
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
year_artist_means = (
spotify_df
# Group by year and artist, calculate average streams
.group_by(____, ____)
.agg(____)
)
print(year_artist_means)