-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Calibrate EITC by number of qualifying dependents and apply dropout (#95
) * Add dropout * Add dropout and EITC calibration * Format * Add install catch * Change download folder * Flip order of US install and bump US * Add EITC targets * Update data links
- Loading branch information
1 parent
371f77a
commit 48e0011
Showing
10 changed files
with
123 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
- bump: minor | ||
changes: | ||
added: | ||
- EITC calibration by child counts. | ||
- 10% dropout during weight calibration. |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 3 additions & 4 deletions
7
policyengine_us_data/storage/download_public_prerequisites.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
from policyengine_us_data.utils.github import download | ||
from pathlib import Path | ||
|
||
FOLDER = Path(__file__).parent | ||
from policyengine_us_data.storage import STORAGE_FOLDER | ||
|
||
download( | ||
"PolicyEngine", | ||
"policyengine-us-data", | ||
"release", | ||
"soi.csv", | ||
FOLDER / "soi.csv", | ||
STORAGE_FOLDER / "soi.csv", | ||
) | ||
download( | ||
"PolicyEngine", | ||
"policyengine-us-data", | ||
"release", | ||
"np2023_d5_mid.csv", | ||
FOLDER / "np2023_d5_mid.csv", | ||
STORAGE_FOLDER / "np2023_d5_mid.csv", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
count_children,eitc_returns,eitc_total,year | ||
0,15108515,12427886000,2021 | ||
1,8500483,19879365000,2021 | ||
2,5542949,20472827000,2021 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters