We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7089a38 commit 3cd0bcaCopy full SHA for 3cd0bca
_delphi_utils_python/data_proc/geomap/geo_data_proc.py
@@ -266,7 +266,7 @@ def create_state_hhs_crosswalk():
266
def create_fips_population_table():
267
"""Build a table of populations by FIPS county codes.
268
269
- Uses US Census Bureau population data from 2020, with 2010 population data for Puerto Rico and a few exceptions.
+ Uses US Census Bureau population data as determined by the YEAR variable, with 2010 population data for Puerto Rico and a few exceptions.
270
"""
271
census_pop = pd.read_csv(FIPS_POPULATION_URL, encoding="ISO-8859-1")
272
census_pop["fips"] = census_pop.apply(lambda x: f"{x['STATE']:02d}{x['COUNTY']:03d}", axis=1)
0 commit comments