CommencerCommencer gratuitement

Handling null values

Let's practice handling null values with our laptops dataset that we worked with previously. You will identify rows with null values, and then try out several techniques to address this problem.

Remember that the laptops data and the pandas package have been imported for you already.

Cet exercice fait partie du cours

Practicing Statistics Interview Questions in Python

Afficher le cours

Exercice interactif pratique

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

# Identify and print the the rows with null values
nulls = laptops[____]
print(____)
Modifier et exécuter le code