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.
This exercise is part of the course
Introduction to Data Science in Python
Exercise instructions
- Select the dogs where
Age
is greater than2
. - Select the dogs whose
Status
is equal toStill Missing
. - Select all dogs whose
Dog Breed
is not equal toPoodle
.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# 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)