#!/usr/bin/env python # coding: utf-8 # ## Basic Style # # The `basic_style` helper can be used to simply modify the style properties. Use `help(cartoframes.viz.palettes)` to get more information. # In[1]: from cartoframes.auth import set_default_credentials set_default_credentials('cartoframes') # In[2]: from cartoframes.viz import Layer, basic_style Layer('sf_nbhd_crime', basic_style( color='blue', size=20, stroke_color='rgba(255, 255, 255, 0.8)', stroke_width=10 ), title='San Francisco Crime' )