-
-
Save sannykhan3777/f16be5be68689164fb78600fef660267 to your computer and use it in GitHub Desktop.
data-manipulation-with-pandas/transforming-data/exercise
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The Mojave Desert states | |
canu = ["California", "Arizona", "Nevada", "Utah"] | |
# Filter for rows in the Mojave Desert states | |
mojave_homelessness =homelessness[homelessness["state"].isin(canu)] | |
# See the result | |
print(mojave_homelessness) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment