CommencerCommencer gratuitement

Filtering with a single condition

You're analyzing streaming data from Spotify and want to focus on tracks that reached a certain level of popularity. You have access to a dataset containing daily streaming counts for songs that were ranked number one on a given day.

The DataFrame spotify_df has been created for you.

Cet exercice fait partie du cours

Introduction to Polars

Afficher le cours

Instructions

  • Filter spotify_df to show only songs that have more than 10,000,000 "streams".

Exercice interactif pratique

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

# Filter for songs with more than 10 million streams
popular_songs = spotify_df.____

print(popular_songs)
Modifier et exécuter le code