You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to get population using ACS1 at a county level or a zip code level if possible.
ACS5 supports a method called zipcode which makes this possible as recommended here (#76). However, for my needs, I need this data through ACS1, so what I tried was :
# Define a consensus class object to get population estimates consensus_object=Census(api_key_census)
# Get total population estimates consensus_object.acs1.get(('NAME', 'B01003_001E'), {'for': 'county', 'in': 'county:36047, state:36'})
Trying to frame this similar to (#73). However, one thing that I am unable to figure out is:
Does ACS1 support this ?
If it does, can someone provide a working example ?
Assuming, there is no way to do this, can anyone suggest alternatives with this or a different package ?
The text was updated successfully, but these errors were encountered:
I am trying to get population using ACS1 at a county level or a zip code level if possible.
ACS5 supports a method called zipcode which makes this possible as recommended here (#76). However, for my needs, I need this data through ACS1, so what I tried was :
Trying to frame this similar to (#73). However, one thing that I am unable to figure out is:
The text was updated successfully, but these errors were encountered: