Let's say I have the following dataset:
import geopandas as gpd
world = gpd.read_file(gpd.datasets.get_path('naturalearth_lowres'))
world.plot()
What I want to achieve is to plot the data with labels, for instance, to add corresponding values of columns iso_a3
and pop_est
as labels on each geometry on the plot.
Thanks