Open sen1 opened 6 years ago
https://github.com/tylerponticelli/intro-data-capstone-biodiversity/blob/3b4ea4fbd6679feba67bfeedb3ac77e0f110c9f4/codeacademy/readme.txt#L116
species.is_sheep is a boolean column. So by == True does not make sense. I would do:
species.is_sheep
== True
species_is_sheep = species[species.is_sheep]
https://github.com/tylerponticelli/intro-data-capstone-biodiversity/blob/3b4ea4fbd6679feba67bfeedb3ac77e0f110c9f4/codeacademy/readme.txt#L116
species.is_sheep
is a boolean column. So by== True
does not make sense. I would do: