Skip to content

Instantly share code, notes, and snippets.

@DalyaG
Created May 9, 2020 20:30
Show Gist options
  • Save DalyaG/7cf9eff6681f66bc0d7e8a15c9cb6a16 to your computer and use it in GitHub Desktop.
Save DalyaG/7cf9eff6681f66bc0d7e8a15c9cb6a16 to your computer and use it in GitHub Desktop.
Read Shelter data to DataFrame
import pandas as pd
filename = "aac_shelter_cat_outcome_eng.csv"
df = pd.read_csv(filename,
usecols=['name', 'date_of_birth', 'color'],
parse_dates=['date_of_birth'])
df.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment