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.
Latihan ini adalah bagian dari kursus
Introduction to Data Science in Python
Petunjuk latihan
- Select the dogs where
Ageis greater than2. - Select the dogs whose
Statusis equal toStill Missing. - Select all dogs whose
Dog Breedis not equal toPoodle.
Latihan interaktif praktis
Cobalah latihan ini dengan menyelesaikan kode contoh berikut.
# 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)