Use the Layout
class to create a variety of map views for comparison.
For more information, run help(Layout)
.
This example uses the default Layout for three weeks of US drought.
from cartoframes.auth import set_default_credentials
from cartoframes.viz import Map, Layer, Layout
set_default_credentials('cartoframes')
Layout([
Map(Layer('drought_wk_1')),
Map(Layer('drought_wk_2')),
Map(Layer('drought_wk_3'))
])