LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Introduction to Polars

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

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

print(artist_means)
Code bearbeiten und ausführen