Combining multiple filter conditions
You are interested in how the number of streams grows for the most popular songs and artists. You will do this by finding songs that were extremely popular (having more than 10 million streams in a day) or released by a specific artist.
The DataFrame spotify_df has been created for you.
Diese Übung ist Teil des Kurses
Introduction to Polars
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Filter for popular songs by Ed Sheeran
filtered_df = spotify_df.filter(____)
print(filtered_df)