ComeçarComece de graça

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.

Este exercício faz parte do curso

Introduction to Polars

Ver curso

Instruções do exercício

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

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

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

print(popular_songs)
Editar e executar o código