--- title: Data Handling Guidebook keywords: fastai sidebar: home_sidebar summary: "The one stop shop to learn about data intake, processing, and visualization." ---
This homepage will show you just some of the things you can do with data.
Either:
pip install your_project_name
from google.colab import drive
drive.mount('/content/drive/My Drive/colabs/test_template')
OR:
from test_template.acsDownload import retrieve_acs_data
Fill me in please! Don't forget code examples:
# Our download function will use Baltimore City's tract, county and state as internal paramters
# Change these values in the cell below using different geographic reference codes will change those parameters
tract = '*'
county = '510'
state = '24'
# Specify the download parameters the function will receieve here
tableId = 'B19001'
year = '17'
saveAcs = True
df = retrieve_acs_data(state, county, tract, tableId, year, saveAcs)
df.head()