ComeçarComece de graça

Finding and dropping missing values

The Spotify streaming dataset contains information about songs and their daily streaming counts. Like many real-world datasets, it contains some missing values that you need to handle before diving in with your analysis.

The spotify_df DataFrame is available 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.

# Find rows with missing stream counts
missing_streams = spotify_df.____

print(missing_streams)
Editar e executar o código