9951 explained code solutions for 126 technologies


python-matplotlibHow to plot specific continent from world map


import matplotlib.pyplot as plt
import geopandas

world = geopandas.read_file(geopandas.datasets.get_path('naturalearth_lowres'))
ax = world[world.continent=='Africa'].plot()

plt.show()ctrl + c
import matplotlib.pyplot as plt

loads Matplotlib module to use plotting capabilities

import geopandas

loads GeoPandas module to work with maps and geo charts

.read_file(

reads map file

naturalearth_lowres

sample world map file to use

world.continent

filters world map based on a specified continent

.show()

render chart in a separate window