#!/usr/bin/env python # coding: utf-8 # In[1]: from lets_plot import * LetsPlot.setup_html() # In[2]: from lets_plot.geo_data import * # In[3]: na=regions_country(['usa', 'canada']) na # In[ ]: na_boundaries=na.boundaries(1) # In[ ]: ggplot() + geom_polygon(aes(fill='found name'), na_boundaries) # In[ ]: countries=regions_country().boundaries(1) countries # In[ ]: ggplot() + geom_polygon(aes(fill='found name'), countries) + ggsize(900, 400) + theme(legend_position='none') # In[ ]: