Get startedGet started for free

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.

This exercise is part of the course

Introduction to Polars

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Filter for popular songs by Ed Sheeran
filtered_df = spotify_df.filter(____) 

print(filtered_df)
Edit and Run Code