Skip to content

Instantly share code, notes, and snippets.

@mmmayo13
Created February 3, 2017 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mmmayo13/2a516f6784c220468f5fa34300623c33 to your computer and use it in GitHub Desktop.
Save mmmayo13/2a516f6784c220468f5fa34300623c33 to your computer and use it in GitHub Desktop.
#Checking out meat and birth data
from pandasql import sqldf
from pandasql import load_meat, load_births
meat = load_meat()
births = load_births()
#You can inspect the dataframes directly if you're using Rodeo
#These print statements are here just in case you want to check out your data in the editor, too
print meat.head()
print births.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment