Skip to content

Instantly share code, notes, and snippets.

@ccerv1
Created February 23, 2019 13:14
Show Gist options
  • Select an option

  • Save ccerv1/7a594754a897ebafdb62d25aff7286a7 to your computer and use it in GitHub Desktop.

Select an option

Save ccerv1/7a594754a897ebafdb62d25aff7286a7 to your computer and use it in GitHub Desktop.
Create a new table with relevant features only
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