Created
February 23, 2019 13:14
-
-
Save ccerv1/7a594754a897ebafdb62d25aff7286a7 to your computer and use it in GitHub Desktop.
Create a new table with relevant features only
This file contains hidden or 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
| world_map = world[world.name != 'Antarctica'] | |
| world_map = world_map[['name', 'geometry']] | |
| world_map.set_index('name', inplace=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment