Color Map Geospatial Plot

In [93]:
from verticapy import *
from verticapy.datasets import load_world
# Africa Dataset - the dataset is available
# at https://www.vertica.com/python/data/africa_education.csv
africa = read_csv("africa_education.csv", schema = "public")
africa_world = load_world()
africa_world = africa_world[africa_world["continent"] == "Africa"]
ax = africa_world["geometry"].geo_plot(edgecolor='black',
                                       column = "pop_est")