9951 explained code solutions for 126 technologies


python-matplotlibHow to plot specific country from world map


import matplotlib.pyplot as plt
import geopandas

world = geopandas.read_file(geopandas.datasets.get_path('naturalearth_lowres'))
ax = world[world.name=='Ukraine'].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.name

filters world map based on a specified country name

.show()

render chart in a separate window