Skip to content

Commit

Permalink
Move EITC calibration to 2020 (not 2021) data (#99)
Browse files Browse the repository at this point in the history
* Fix EITC targets

* Update data links
  • Loading branch information
nikhilwoodruff authored Oct 9, 2024
1 parent 3d91219 commit 820f2b0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: minor
changes:
changed:
- EITC targets improved by uprating 2020 rather than 2021 targets.
2 changes: 1 addition & 1 deletion policyengine_us_data/datasets/acs/acs.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class ACS_2022(ACS):
time_period = 2022
file_path = STORAGE_FOLDER / "acs_2022.h5"
census_acs = CensusACS_2022
url = "release://PolicyEngine/policyengine-us-data/1.10.0/acs_2022.h5"
url = "release://PolicyEngine/policyengine-us-data/1.11.0/acs_2022.h5"


if __name__ == "__main__":
Expand Down
4 changes: 2 additions & 2 deletions policyengine_us_data/datasets/cps/cps.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ class CPS_2024(CPS):
label = "CPS 2024 (2022-based)"
file_path = STORAGE_FOLDER / "cps_2024.h5"
time_period = 2024
url = "release://policyengine/policyengine-us-data/1.10.0/cps_2024.h5"
url = "release://policyengine/policyengine-us-data/1.11.0/cps_2024.h5"


class PooledCPS(Dataset):
Expand Down Expand Up @@ -707,7 +707,7 @@ class Pooled_3_Year_CPS_2023(PooledCPS):
CPS_2023,
]
time_period = 2023
url = "release://PolicyEngine/policyengine-us-data/1.10.0/pooled_3_year_cps_2023.h5"
url = "release://PolicyEngine/policyengine-us-data/1.11.0/pooled_3_year_cps_2023.h5"


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion policyengine_us_data/datasets/cps/enhanced_cps.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ class EnhancedCPS_2024(EnhancedCPS):
name = "enhanced_cps_2024"
label = "Enhanced CPS 2024"
file_path = STORAGE_FOLDER / "enhanced_cps_2024.h5"
url = "release://policyengine/policyengine-us-data/1.10.0/enhanced_cps_2024.h5"
url = "release://policyengine/policyengine-us-data/1.11.0/enhanced_cps_2024.h5"


if __name__ == "__main__":
Expand Down
7 changes: 4 additions & 3 deletions policyengine_us_data/storage/eitc.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
count_children,eitc_returns,eitc_total,year
0,15108515,12427886000,2021
1,8500483,19879365000,2021
2,5542949,20472827000,2021
0,7636714,2255068000,2020
1,9197765,21441196000,2020
2,5994984,22312989000,2020
3,3196245,13230431000,2020

0 comments on commit 820f2b0

Please sign in to comment.