-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,795 changed files
with
49,999 additions
and
9,505 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
[run] | ||
disable_warnings = couldnt-parse | ||
|
||
[report] | ||
# Include only variables related to taxes and benefits: | ||
include = */variables/* |
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 |
---|---|---|
|
@@ -48,3 +48,6 @@ docs/book/_build | |
# GitHub Codespaces. | ||
venv/** | ||
oryx-build-commands.txt | ||
|
||
**/*.csv.gz | ||
**/*.pkl |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: fiscalsim-us-dev | ||
dependencies: | ||
- python=3.10 | ||
- python>=3.10,<3.12 | ||
- pip |
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,11 +1,25 @@ | ||
from .cps import ( | ||
CPS_2020, | ||
CPS_2021, | ||
CPS_2022, | ||
CPS_2023, | ||
RawCPS_2020, | ||
RawCPS_2021, | ||
CalibratedCPS_2023, | ||
) | ||
|
||
DATASETS = [CPS_2020, CPS_2021, CPS_2022, CPS_2023, CalibratedCPS_2023] | ||
from .cps import ( | ||
CPS_2020, | ||
CPS_2021, | ||
CPS_2022, | ||
CPS_2023, | ||
RawCPS_2020, | ||
RawCPS_2021, | ||
RawCPS_2022, | ||
EnhancedCPS_2023, | ||
PUFExtendedCPS_2023, | ||
CalibratedCPS_2023, | ||
) | ||
|
||
from .poverty_tracker.poverty_tracker import PovertyTracker | ||
|
||
DATASETS = [ | ||
CPS_2020, | ||
CPS_2021, | ||
CPS_2022, | ||
CPS_2023, | ||
EnhancedCPS_2023, | ||
PUFExtendedCPS_2023, | ||
CalibratedCPS_2023, | ||
PovertyTracker, | ||
] |
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,10 +1,14 @@ | ||
from .cps import ( | ||
CPS_2020, | ||
CPS_2021, | ||
CPS_2022, | ||
CPS_2023, | ||
) | ||
|
||
from .raw_cps import RawCPS_2020, RawCPS_2021 | ||
|
||
from .calibrated_cps import CalibratedCPS_2023 | ||
from .cps import ( | ||
CPS_2020, | ||
CPS_2021, | ||
CPS_2022, | ||
CPS_2023, | ||
) | ||
|
||
from .raw_cps import RawCPS_2020, RawCPS_2021, RawCPS_2022 | ||
|
||
from .enhanced_cps import ( | ||
EnhancedCPS_2023, | ||
PUFExtendedCPS_2023, | ||
CalibratedCPS_2023, | ||
) |
This file was deleted.
Oops, something went wrong.
77 changes: 0 additions & 77 deletions
77
fiscalsim_us/data/datasets/cps/calibrated_cps/calibrated_cps.py
This file was deleted.
Oops, something went wrong.
108 changes: 0 additions & 108 deletions
108
...lsim_us/data/datasets/cps/calibrated_cps/calibration_parameters/populations/by_state.yaml
This file was deleted.
Oops, something went wrong.
26 changes: 0 additions & 26 deletions
26
fiscalsim_us/data/datasets/cps/calibrated_cps/calibration_parameters/populations/total.yaml
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
...ta/datasets/cps/calibrated_cps/calibration_parameters/programs/snap/budgetary_impact.yaml
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.