CommencezCommencez gratuitement

Selecting missing puppies

Let's return to our DataFrame of missing puppies, which is loaded as mpr. Let's select a few different rows to learn more about the other missing dogs.

Cette activité fait partie du cours

Introduction to Data Science in Python

Voir le cours

Instructions de l’exercice

  • Select the dogs where Age is greater than 2.
  • Select the dogs whose Status is equal to Still Missing.
  • Select all dogs whose Dog Breed is not equal to Poodle.

Exercice interactif pratique

Essayez cet exercice en complétant ce code d’exemple.

# Select the dogs where Age is greater than 2
greater_than_2 = mpr[mpr.Age ____ 2]
print(greater_than_2)

# Select the dogs whose Status is equal to Still Missing
still_missing = mpr[____ ____ ____]
print(still_missing)

# Select all dogs whose Dog Breed is not equal to Poodle
not_poodle = ____
print(not_poodle)
Modifier et exécuter le code