You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,17 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [0.15.3] - 2025-01-24 12:00:00
9
+
10
+
### Added
11
+
12
+
- Two new parameters, `income_tax_filer` and `wealth_tax_filer`, that determine whether certain types `j` pay income or wealth taxes, respectively. See PR [#1084](https://github.com/PSLmodels/OG-Core/pull/1084)
13
+
8
14
## [0.15.2] - 2025-01-22 12:00:00
9
15
10
16
### Added
11
17
12
-
-A new parameters, `r_gov_DY` and `r_gov_DY2`, that allow the government interest rate to be a function of the debt-to-GDP ratio. See PR [#1037](https://github.com/PSLmodels/OG-Core/pull/1037)
18
+
-Two new parameters, `r_gov_DY` and `r_gov_DY2`, that allow the government interest rate to be a function of the debt-to-GDP ratio. See PR [#1037](https://github.com/PSLmodels/OG-Core/pull/1037)
13
19
14
20
## [0.15.1] - 2026-01-19 12:00:00
15
21
@@ -499,6 +505,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
499
505
- 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.
Copy file name to clipboardExpand all lines: ogcore/default_parameters.json
+56Lines changed: 56 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4304,6 +4304,62 @@
4304
4304
}
4305
4305
}
4306
4306
},
4307
+
"income_tax_filer": {
4308
+
"title": "Income tax filer indicator",
4309
+
"description": "Binary indicator for whether lifetime income type j is subject to income taxes. Non-filers (tax_filer[j]=0) are not subject to income taxes but still pay payroll taxes.",
4310
+
"section_1": "Fiscal Policy Parameters",
4311
+
"section_2": "Taxes",
4312
+
"notes": "Specified by time T and lifetime income group J. Defaults to 1.0 (all groups file). Can be set to values between 0 and 1 to represent the share of group j that files.",
4313
+
"type": "float",
4314
+
"number_dims": 2,
4315
+
"value": [
4316
+
{
4317
+
"value": [[
4318
+
1.0,
4319
+
1.0,
4320
+
1.0,
4321
+
1.0,
4322
+
1.0,
4323
+
1.0,
4324
+
1.0
4325
+
]]
4326
+
}
4327
+
],
4328
+
"validators": {
4329
+
"range": {
4330
+
"min": 0.0,
4331
+
"max": 1.0
4332
+
}
4333
+
}
4334
+
},
4335
+
"wealth_tax_filer": {
4336
+
"title": "Wealth tax filer indicator",
4337
+
"description": "Binary indicator for whether lifetime income type j is subject to wealth taxes. Non-filers (wealth_tax_filer[j]=0) are not subject to wealth taxes but still pay payroll taxes.",
4338
+
"section_1": "Fiscal Policy Parameters",
4339
+
"section_2": "Taxes",
4340
+
"notes": "Specified by time T and lifetime income group J. Defaults to 1.0 (all groups file). Can be set to values between 0 and 1 to represent the share of group j that files.",
4341
+
"type": "float",
4342
+
"number_dims": 2,
4343
+
"value": [
4344
+
{
4345
+
"value": [[
4346
+
1.0,
4347
+
1.0,
4348
+
1.0,
4349
+
1.0,
4350
+
1.0,
4351
+
1.0,
4352
+
1.0
4353
+
]]
4354
+
}
4355
+
],
4356
+
"validators": {
4357
+
"range": {
4358
+
"min": 0.0,
4359
+
"max": 1.0
4360
+
}
4361
+
}
4362
+
},
4307
4363
"nu": {
4308
4364
"title": "Parameter for convergence rate of functional iteration",
4309
4365
"description": "Parameter for convergence rate of functional iteration.",
0 commit comments