How goes the progress in obtaining voter registration data for 2012 broken down by county? It seems like this is all we have so far.
>>> registration = pd.read_csv('./data/PartyRegistration.csv')[['County', 'Total', 'Year']]
>>> registration[registration.Year==2012]
County Total Year
1054 15001 104323.0 2012
1084 15009 86053.0 2012
1114 15007 40738.0 2012
1144 15003 474554.0 2012
Is the rest of data publicly available?
How goes the progress in obtaining voter registration data for 2012 broken down by county? It seems like this is all we have so far.
Is the rest of data publicly available?