CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Introduction to Polars

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

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

print(filtered_df)
Modifier et exécuter le code