Skip to content

Instantly share code, notes, and snippets.

@CamDavidsonPilon
Created August 22, 2014 01:36
Embed
What would you like to do?
from demographica import TOTALS
brit = TOTALS.ix['Brittany', 'F', : ]
brit.columns = ['Brittany']
sandra = TOTALS.ix['Sandra', 'F', :]
sandra.columns = ['Sandra]
ax = brit.plot()
sandra.plot(ax=ax,rot=25)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment