Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parameterize adjustments to baseline spending levels in reform policy #987

Merged
merged 29 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
cf19eea
add new params for adjusting baseline spending
jdebacker Sep 12, 2024
fea7e07
update default vals
jdebacker Sep 12, 2024
9fc91ce
apply new params in fiscal.py
jdebacker Sep 12, 2024
1738e3f
extrapolate new params
jdebacker Sep 12, 2024
0506667
update SS and TPI algos to apply haircut to baseline spending
jdebacker Sep 12, 2024
be7d5ae
format
jdebacker Sep 12, 2024
45476d6
test updates to get_I_g
jdebacker Sep 12, 2024
36b1e7d
fix issues with baseline spend values
jdebacker Sep 13, 2024
ec982c4
clarify when using baseline values
jdebacker Sep 13, 2024
c1647de
correct args for inner loop
jdebacker Sep 14, 2024
95e495c
just return actual baseline values
jdebacker Sep 14, 2024
7b43966
update calls to basleine in tpi
jdebacker Sep 14, 2024
92529e3
format, p.
jdebacker Sep 15, 2024
af93b30
fix typo
jdebacker Sep 15, 2024
6e665fc
arg for extra ss solver tests
jdebacker Sep 16, 2024
2028762
assign value to TR_ss
jdebacker Sep 16, 2024
bc1acd8
initial I_g for all calles
jdebacker Sep 26, 2024
7a324c3
Merge remote-tracking branch 'upstream/master' into basespend_adj
jdebacker Sep 26, 2024
9c26e4a
Merge remote-tracking branch 'upstream/master' into basespend_adj
jdebacker Sep 27, 2024
92d09fc
describe baseline spending in the docs
jdebacker Sep 28, 2024
c6b582f
update parameters docs
jdebacker Sep 28, 2024
44902ac
format
jdebacker Sep 28, 2024
f429a85
update changelog for new release
jdebacker Sep 29, 2024
7e551de
bump target py versions
jdebacker Sep 29, 2024
394ecc6
update version number
jdebacker Sep 29, 2024
ce11f5f
bump date in changelog
jdebacker Oct 2, 2024
85b9e62
update results for extra run with Kg > 0
jdebacker Oct 2, 2024
0d72a5b
fix get I in non base spend
jdebacker Oct 2, 2024
4137152
Merge remote-tracking branch 'upstream/master' into basespend_adj
jdebacker Oct 2, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.13.1] - 2024-09-30 12:00:00

### Added

- Three new parameters to adjust government spending amounts in the case of `baseline_spending=True`:
- `alpha_bs_G`: the proportional adjustment to the level of baseline spending on government consumption (time varying, default value is 1.0 for each model period)
- `alpha_bs_T`: the proportional adjustment to the level of baseline spending on non-pension transfers (time varying, default value is 1.0 for each model period)
- `alpha_bs_I`: the proportional adjustment to the level of baseline spending on infrastructure investment (time varying, default value is 1.0 for each model period)

## [0.13.0] - 2024-09-26 12:00:00

### Added
Expand Down Expand Up @@ -333,6 +342,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Version [0.7.0] on August 30, 2021 was the first time that the OG-USA repository was detached from all of the core model logic, which was named OG-Core. Before this version, OG-USA was part of what is now the [`OG-Core`](https://github.com/PSLmodels/OG-Core) repository. In the next version of OG-USA, we adjusted the version numbering to begin with 0.1.0. This initial version of 0.7.0, was sequential from what OG-USA used to be when the OG-Core project was called OG-USA.
- Any earlier versions of OG-USA can be found in the [`OG-Core`](https://github.com/PSLmodels/OG-Core) repository [release history](https://github.com/PSLmodels/OG-Core/releases) from [v.0.6.4](https://github.com/PSLmodels/OG-Core/releases/tag/v0.6.4) (Jul. 20, 2021) or earlier.

[0.13.1]: https://github.com/PSLmodels/OG-Core/compare/v0.13.0...v0.13.1
[0.13.0]: https://github.com/PSLmodels/OG-Core/compare/v0.12.0...v0.13.0
[0.12.0]: https://github.com/PSLmodels/OG-Core/compare/v0.11.17...v0.12.0
[0.11.17]: https://github.com/PSLmodels/OG-Core/compare/v0.11.16...v0.11.17
[0.11.16]: https://github.com/PSLmodels/OG-Core/compare/v0.11.15...v0.11.16
Expand Down
Loading
Loading