Hi! Glad to see you made it to the Quickstart guide! In this guide you are introduced to how CARTOframes can be used by data scientists in spatial analysis workflows. Using simulated Starbucks revenue data, this guide walks through some common steps a data scientist takes to answer the following question: which stores are performing better than others?
Before you get started, we encourage you to have CARTOframes and Python 3 installed so you can get a feel for the library by using it:
1
# pip install cartoframes
For other ways to install CARTOframes, check out the Installation guide.
Let’s say you are a data scientist working for Starbucks and you want to better understand why some stores in Brooklyn, New York, perform better than others.
To begin, let’s outline a workflow:
Let’s get started!
We are going to use a dataset that contains information about the location of Starbucks and each store’s annual revenue.
As a first exploratory step, read it into a Jupyter Notebook using pandas.
1
2
3
4
import pandas as pd
stores_df = pd.read_csv('http://libs.cartocdn.com/cartoframes/files/starbucks_brooklyn.csv')
stores_df.head()
name | address | revenue | |
---|---|---|---|
0 | Franklin Ave & Eastern Pkwy | 341 Eastern Pkwy,Brooklyn, NY 11238 | 1321040.772 |
1 | 607 Brighton Beach Ave | 607 Brighton Beach Avenue,Brooklyn, NY 11235 | 1268080.418 |
2 | 65th St & 18th Ave | 6423 18th Avenue,Brooklyn, NY 11204 | 1248133.699 |
3 | Bay Ridge Pkwy & 3rd Ave | 7419 3rd Avenue,Brooklyn, NY 11209 | 1185702.676 |
4 | Caesar's Bay Shopping Center | 8973 Bay Parkway,Brooklyn, NY 11214 | 1148427.411 |
To display your stores as points on a map, you first have to convert the address
column into geometries. This process is called geocoding and CARTO provides a straightforward way to do it (you can learn more about it in the Data Services guide).
In order to geocode, you have to set your CARTO credentials. If you aren’t sure about your API key, check the Authentication guide to learn how to get it. In case you want to see the geocoded result, without being logged in, you can get it here.
Note: If you don’t have an account yet, you can get a trial free account by signing up here.
1
2
3
from cartoframes.auth import set_default_credentials
set_default_credentials('creds.json')
Now that your credentials are set, we are ready to geocode the dataframe. The resulting data will be a GeoDataFrame.
1
2
3
4
from cartoframes.data.services import Geocoding
stores_gdf, _ = Geocoding().geocode(stores_df, street='address')
stores_gdf.head()
1
Success! Data geocoded correctly
the_geom | name | address | revenue | gc_status_rel | carto_geocode_hash | |
---|---|---|---|---|---|---|
0 | POINT (-73.95746 40.67102) | Franklin Ave & Eastern Pkwy | 341 Eastern Pkwy,Brooklyn, NY 11238 | 1321040.772 | 0.91 | 9212e0e908d8c64d07c6a94827322397 |
1 | POINT (-73.96122 40.57796) | 607 Brighton Beach Ave | 607 Brighton Beach Avenue,Brooklyn, NY 11235 | 1268080.418 | 0.97 | b1bbfe2893914a350193969a682dc1f5 |
2 | POINT (-73.98978 40.61944) | 65th St & 18th Ave | 6423 18th Avenue,Brooklyn, NY 11204 | 1248133.699 | 0.94 | e47cf7b16d6c9b53c63e86a0418add1d |
3 | POINT (-74.02750 40.63202) | Bay Ridge Pkwy & 3rd Ave | 7419 3rd Avenue,Brooklyn, NY 11209 | 1185702.676 | 0.94 | 2f21749c02f73116892eb3b6fd5d5738 |
4 | POINT (-74.00098 40.59321) | Caesar's Bay Shopping Center | 8973 Bay Parkway,Brooklyn, NY 11214 | 1148427.411 | 0.94 | 134c23973313802448365db6235783f9 |
Done! Now that the stores are geocoded, you will notice a new column named geometry
has been added. This column stores the geographic location of each store and it’s used to plot each location on the map.
You can quickly visualize your geocoded dataframe using the Map and Layer classes. Check out the Data Visualization guide to learn more about the visualization capabilities inside of CARTOframes.
1
2
3
from cartoframes.viz import Map, Layer
Map(Layer(stores_gdf))
Great! You have a map!
With the stores plotted on the map, you now have a better sense about where each one is. To continue your exploration, you want to know which stores earn the most yearly revenue. To do this, you can use the size_continuous_style
visualization layer:
1
2
3
from cartoframes.viz import Map, Layer, size_continuous_style
Map(Layer(stores_gdf, size_continuous_style('revenue', size_range=[10,40]), title='Annual Revenue ($)'))
Good job! By using the size continuous visualization style
you can see right away where the stores with higher revenue are. By default, visualization styles also provide a popup with the mapped value and an appropriate legend.
Similar to geocoding, there is a straightforward method for creating isochrones to define areas of influence around each store. Isochrones are concentric polygons that display equally calculated levels over a given surface area measured by time.
For this analysis, let’s create isochrones for each store that cover the area within a 15 minute walk.
To do this you will use the Isolines data service:
1
2
3
4
from cartoframes.data.services import Isolines
isochrones_gdf, _ = Isolines().isochrones(stores_gdf, [15*60], mode='walk')
isochrones_gdf.head()
1
Success! Isolines created correctly
source_id | data_range | the_geom | |
---|---|---|---|
0 | 0 | 900 | MULTIPOLYGON (((-73.96811 40.67413, -73.96751 ... |
1 | 1 | 900 | MULTIPOLYGON (((-73.97155 40.57732, -73.97112 ... |
2 | 2 | 900 | MULTIPOLYGON (((-73.99833 40.62538, -73.99361 ... |
3 | 3 | 900 | MULTIPOLYGON (((-74.03764 40.63448, -74.03738 ... |
4 | 4 | 900 | MULTIPOLYGON (((-74.00519 40.59792, -74.00391 ... |
1
2
3
4
5
6
stores_map = Map([
Layer(isochrones_gdf),
Layer(stores_gdf, size_continuous_style('revenue', size_range=[10,40]), title='Annual Revenue ($)')
])
stores_map
There they are! To learn more about creating isochrones and isodistances check out the Data Services guide.
Note: You will see how to publish a map in the last section. If you already want to publish this map, you can do it by calling
stores_map.publish('starbucks_isochrones', password=None)
.
Now that you have the area of influence calculated for each store, let’s take a look at how to augment the result with population information to help better understand a store’s average revenue per person.
Note: To be able to use the Enrichment functions you need an Enterprise CARTO account with Data Observatory 2.0 enabled. Please contact your Customer Success Manager or contact us at sales@carto.com for more information.
First, let’s find the demographic variable we need. We will use the Catalog
class that can be filtered by country and category. In our case, we have to look for USA demographics datasets. Let’s see which public ones are available.
1
2
3
4
from cartoframes.data.observatory import Catalog
datasets_df = Catalog().country('usa').category('demographics').datasets.to_dataframe()
datasets_df[datasets_df['is_public_data'] == True]
1
2
You can find more entities with the Global country filter. To apply that filter run:
Catalog().country('glo')
slug | name | description | category_id | country_id | data_source_id | provider_id | geography_name | geography_description | temporal_aggregation | time_coverage | update_frequency | is_public_data | lang | version | category_name | provider_name | geography_id | id | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4 | wp_population_704f6b75 | Population Mosaics - United States of America ... | Mosaiced 1km resolution global datasets. The m... | demographics | usa | population | worldpop | Grid 1km - United States of America | Global grid at aprox. 1-kilometer resolution (... | yearly | [2020-01-01, 2021-01-01) | None | True | eng | 2020 | Demographics | WorldPop | carto-do-public-data.worldpop.geography_usa_gr... | carto-do-public-data.worldpop.demographics_pop... |
5 | wp_population_22be8012 | Population Mosaics - United States of America ... | Mosaiced 1km resolution global datasets. The m... | demographics | usa | population | worldpop | Grid 1km - United States of America | Global grid at aprox. 1-kilometer resolution (... | yearly | [2019-01-01, 2020-01-01) | None | True | eng | 2019 | Demographics | WorldPop | carto-do-public-data.worldpop.geography_usa_gr... | carto-do-public-data.worldpop.demographics_pop... |
6 | wp_population_55b9b084 | Population Mosaics - United States of America ... | Mosaiced 1km resolution global datasets. The m... | demographics | usa | population | worldpop | Grid 1km - United States of America | Global grid at aprox. 1-kilometer resolution (... | yearly | [2018-01-01, 2019-01-01) | None | True | eng | 2018 | Demographics | WorldPop | carto-do-public-data.worldpop.geography_usa_gr... | carto-do-public-data.worldpop.demographics_pop... |
7 | wp_population_c506ad15 | Population Mosaics - United States of America ... | Mosaiced 1km resolution global datasets. The m... | demographics | usa | population | worldpop | Grid 1km - United States of America | Global grid at aprox. 1-kilometer resolution (... | yearly | [2017-01-01, 2018-01-01) | None | True | eng | 2017 | Demographics | WorldPop | carto-do-public-data.worldpop.geography_usa_gr... | carto-do-public-data.worldpop.demographics_pop... |
8 | wp_population_b2019d83 | Population Mosaics - United States of America ... | Mosaiced 1km resolution global datasets. The m... | demographics | usa | population | worldpop | Grid 1km - United States of America | Global grid at aprox. 1-kilometer resolution (... | yearly | [2016-01-01, 2017-01-01) | None | True | eng | 2016 | Demographics | WorldPop | carto-do-public-data.worldpop.geography_usa_gr... | carto-do-public-data.worldpop.demographics_pop... |
... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
527 | acs_sociodemogr_bd7ed0dc | Sociodemographics - United States of America (... | The American Community Survey (ACS) is an ongo... | demographics | usa | sociodemographics | usa_acs | Public Use Microdata Area - United States of A... | Shoreline clipped TIGER/Line boundaries. More ... | yearly | [2016-01-01, 2017-01-01) | None | True | eng | 2016 | Demographics | American Community Survey | carto-do-public-data.carto.geography_usa_puma_... | carto-do-public-data.usa_acs.demographics_soci... |
530 | acs_sociodemogr_8e66b3d3 | Sociodemographics - United States of America (... | The American Community Survey (ACS) is an ongo... | demographics | usa | sociodemographics | usa_acs | Census Place - United States of America (2019) | Shoreline clipped TIGER/Line boundaries. More ... | yearly | [2011-01-01, 2012-01-01) | None | True | eng | 2011 | Demographics | American Community Survey | carto-do-public-data.carto.geography_usa_place... | carto-do-public-data.usa_acs.demographics_soci... |
532 | acs_sociodemogr_6347604c | Sociodemographics - United States of America (... | The American Community Survey (ACS) is an ongo... | demographics | usa | sociodemographics | usa_acs | Public Use Microdata Area - United States of A... | Shoreline clipped TIGER/Line boundaries. More ... | 3yrs | [2009-01-01, 2012-01-01) | None | True | eng | 20092011 | Demographics | American Community Survey | carto-do-public-data.carto.geography_usa_puma_... | carto-do-public-data.usa_acs.demographics_soci... |
533 | acs_sociodemogr_231a457f | Sociodemographics - United States of America (... | The American Community Survey (ACS) is an ongo... | demographics | usa | sociodemographics | usa_acs | Public Use Microdata Area - United States of A... | Shoreline clipped TIGER/Line boundaries. More ... | yearly | [2011-01-01, 2012-01-01) | None | True | eng | 2011 | Demographics | American Community Survey | carto-do-public-data.carto.geography_usa_puma_... | carto-do-public-data.usa_acs.demographics_soci... |
534 | acs_sociodemogr_cd142453 | Sociodemographics - United States of America (... | The American Community Survey (ACS) is an ongo... | demographics | usa | sociodemographics | usa_acs | Public Use Microdata Area - United States of A... | Shoreline clipped TIGER/Line boundaries. More ... | yearly | [2013-01-01, 2014-01-01) | None | True | eng | 2013 | Demographics | American Community Survey | carto-do-public-data.carto.geography_usa_puma_... | carto-do-public-data.usa_acs.demographics_soci... |
440 rows × 19 columns
Nice! Let’s take the first one (acs_sociodemogr_b758e778
) that has aggregated data from 2013 to 2018 and check which of its variables have data about the total population.
1
2
3
4
5
from cartoframes.data.observatory import Dataset
dataset = Dataset.get('acs_sociodemogr_b758e778')
variables_df = dataset.variables.to_dataframe()
variables_df[variables_df['description'].str.contains('total population', case=False, na=False)]
slug | name | description | db_type | agg_method | column_name | variable_group_id | dataset_id | id | |
---|---|---|---|---|---|---|---|---|---|
2 | total_pop_3cf008b3 | Total Population | Total Population. The total number of all peop... | FLOAT | SUM | total_pop | None | carto-do-public-data.usa_acs.demographics_soci... | carto-do-public-data.usa_acs.demographics_soci... |
68 | income_per_capi_8a9352e0 | Income per capita | Per Capita Income in the past 12 Months. Per c... | FLOAT | AVG | income_per_capita | None | carto-do-public-data.usa_acs.demographics_soci... | carto-do-public-data.usa_acs.demographics_soci... |
We can see the variable that contains the total population is the one with the slug total_pop_3cf008b3
. Now we are ready to enrich our areas of influence with that variable.
1
2
3
4
5
6
7
from cartoframes.data.observatory import Variable
from cartoframes.data.observatory import Enrichment
variable = Variable.get('total_pop_3cf008b3')
isochrones_gdf = Enrichment().enrich_polygons(isochrones_gdf, [variable])
isochrones_gdf.head()
source_id | data_range | the_geom | total_pop | |
---|---|---|---|---|
0 | 0 | 900 | MULTIPOLYGON (((-73.96811 40.67413, -73.96751 ... | 48519.041439 |
1 | 1 | 900 | MULTIPOLYGON (((-73.97155 40.57732, -73.97112 ... | 36530.582806 |
2 | 2 | 900 | MULTIPOLYGON (((-73.99833 40.62538, -73.99361 ... | 38136.981680 |
3 | 3 | 900 | MULTIPOLYGON (((-74.03764 40.63448, -74.03738 ... | 35688.646046 |
4 | 4 | 900 | MULTIPOLYGON (((-74.00519 40.59792, -74.00391 ... | 9609.119706 |
Great! Let’s see the result on a map:
1
2
3
4
5
6
from cartoframes.viz import color_continuous_style
Map([
Layer(isochrones_gdf, color_continuous_style('total_pop'), title='Total Population'),
Layer(stores_gdf, size_continuous_style('revenue', size_range=[10,40]), title='Annual Revenue ($)')
])
At this stage, we could say that the store on the right performs better than others because its area of influence is the one with the lowest population but the store is not the one with the lowest revenue. This insight will help us to focus on them in further analyses.
To learn more about discovering and enriching your data with thousands of public and premium datasets, check out the Data Observatory guide.
The final step of this workflow is to share this interactive map with your colleagues so they can explore the information on their own. Let’s do it!
First, let’s add widgets to it so people are able to see some graphs of the information and filter it. To do this, we only have to add default_widget=True
to the layers.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
result_map = Map([
Layer(
isochrones_gdf,
color_continuous_style('total_pop', stroke_width=0, opacity=0.7),
title='Total Population',
default_widget=True
),
Layer(
stores_gdf,
size_continuous_style('revenue', size_range=[10,40], stroke_color='white'),
title='Annual Revenue ($)',
default_widget=True
)
])
result_map
Cool! Now that you have a small dashboard to play with, let’s publish it on CARTO so you are able to share it with anyone. To do this, you just need to call the publish method from the Map class:
1
result_map.publish('starbucks_analysis', password=None, if_exists='replace')
1
2
3
4
{'id': '94e546ac-9aab-4857-a9b2-46874299c2ed',
'url': 'https://cartoframes-org.carto.com/u/cartoframes/kuviz/94e546ac-9aab-4857-a9b2-46874299c2ed',
'name': 'starbucks_analysis',
'privacy': 'public'}
In order to improve the performance and reduce the size of your map, we recommend to upload the data to CARTO and use the table names in the layers instead. To upload your data, you just need to call to_carto
with your GeoDataFrame:
1
2
3
4
from cartoframes import to_carto
to_carto(stores_gdf, 'starbucks_stores', if_exists='replace')
to_carto(isochrones_gdf, 'starbucks_isochrones', if_exists='replace')
1
2
3
4
5
6
7
8
Success! Data uploaded to table "starbucks_stores" correctly
Success! Data uploaded to table "starbucks_isochrones" correctly
'starbucks_isochrones'
You have finished this guide and have a sense about how CARTOframes can speed up your workflow. To continue learning, you can check out other Guides, the Reference to know everything about a class or a method or play with the Examples to see CARTOframes in action.