ComeçarComece de graça

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.

Este exercício faz parte do curso

Introduction to Polars

Ver curso

Exercício interativo prático

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

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

print(filtered_df)
Editar e executar o código