Skip to content

Commit b582e7d

Browse files
committed
fix typos and clarify rate in data dictionary
1 parent 5833df0 commit b582e7d

File tree

2 files changed

+20
-16
lines changed

2 files changed

+20
-16
lines changed

data_dict.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@ UI Calculator for Ganong, Noel and Vavra (2020): Data Dictionary
22
================
33
Peter Ganong, Pascal Noel, Peter Robertson and Joseph Vavra
44

5-
## Computation of Weekly Benefit Amount (state\_thresholds.csv)
5+
## Computation of Weekly Benefit Amount (`state_thresholds.csv`)
66

7-
Most states have a linear benefits schedule as a function of some
8-
measure of earnings (`base_wage`) which is subject to a maximum (`max`)
9-
and minimum (`min`) benefit amount. That is we define:
7+
Every state computes benefits using a `rate`, which is the ratio of
8+
weekly benefits to a measure of prior earnings (`base_wage`). We
9+
calculate:
1010

1111
`wba_formula = base_wage*rate + intercept`
1212

13-
and caclulate:
13+
This computation is subject to a maximum (`max`) and minimum (`min`)
14+
benefit amount.
1415

1516
| Scenario | Weekly Benefit Amount |
1617
| ------------------------- | --------------------- |
@@ -19,9 +20,10 @@ and caclulate:
1920
| `wba_formula` \> `max` | `max` |
2021

2122
The `wage_concept` records how the `base_wage` should be calculated and
22-
has five possible values:
23+
has five possible
24+
values:
2325

24-
| `wage_concept` | Value of of `base_wage` |
26+
| `wage_concept` | Value of `base_wage` |
2527
| -------------- | ------------------------------------------------------------------- |
2628
| `annual_wage` | annual wages |
2729
| `hqw` | wages in highest quarter |
@@ -33,9 +35,10 @@ Finally, some states have different benefits schedules depending on
3335
whether the income of an applicant is over a particular threshold. This
3436
is captured by `inc_thresh`. The `inc_thresh` variable records the
3537
minimum income as measured in the `wage_concept` for that row, such that
36-
the rules in that row should be applied to calculate benefits.
38+
the rules in that row should be applied to calculate
39+
benefits.
3740

38-
## Earnings/ Employment Needed in Base Period to Qualify (state\_eligibility.csv)
41+
## Earnings/ Employment Needed in Base Period to Qualify (`state_eligibility.csv`)
3942

4043
We assume that the base period is the calendar year of 2018. We do this
4144
because it matches what we observe in the CPS. This would correspond to
@@ -51,7 +54,8 @@ WI.”
5154

5255
We include variables which enforce the following conitions. Most states
5356
include only some of these conditions in their eligibility checks, so
54-
the majority of values in `state_eligibility.csv` are `0`.
57+
the majority of values in `state_eligibility.csv` are
58+
`0`.
5559

5660
| Variable | Criterion |
5761
| ------------------- | ---------------------------------------------------------------------------------------------- |

source/data_dict.Rmd

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@ author: "Peter Ganong, Pascal Noel, Peter Robertson and Joseph Vavra"
44
output: github_document
55
---
66

7-
## Computation of Weekly Benefit Amount (state_thresholds.csv)
7+
## Computation of Weekly Benefit Amount (`state_thresholds.csv`)
88

9-
Most states have a linear benefits schedule as a function of some measure of earnings (`base_wage`) which is subject to a maximum (`max`) and minimum (`min`) benefit amount. That is we define:
9+
Every state computes benefits using a `rate`, which is the ratio of weekly benefits to
10+
a measure of prior earnings (`base_wage`). We calculate:
1011

1112
`wba_formula = base_wage*rate + intercept`
1213

13-
and caclulate:
14+
This computation is subject to a maximum (`max`) and minimum (`min`) benefit amount.
1415

1516
Scenario | Weekly Benefit Amount
1617
--- | ---
1718
`wba_formula < min` | `min`
1819
`min < wba_formula < max` | `wba_formula`
1920
`wba_formula` > `max` | `max`
2021

21-
2222
The `wage_concept` records how the `base_wage` should be calculated and has five possible values:
2323

24-
`wage_concept` | Value of of `base_wage`
24+
`wage_concept` | Value of `base_wage`
2525
--- | ---
2626
`annual_wage` | annual wages
2727
`hqw` | wages in highest quarter
@@ -32,7 +32,7 @@ The `wage_concept` records how the `base_wage` should be calculated and has five
3232
Finally, some states have different benefits schedules depending on whether the income of an applicant is over a particular threshold. This is captured by `inc_thresh`. The `inc_thresh` variable records the minimum income as measured in the `wage_concept` for that row, such that the rules in that row should be applied to calculate benefits.
3333

3434

35-
## Earnings/ Employment Needed in Base Period to Qualify (state_eligibility.csv)
35+
## Earnings/ Employment Needed in Base Period to Qualify (`state_eligibility.csv`)
3636
We assume that the base period is the calendar year of 2018. We do this because it matches what we observe in the CPS. This would correspond to the standard base period for an applicant in April, May or June of 2019. The DoL summary document for UI benefit rules says
3737
“Almost all qualifying earnings are determined using a base period consisting of the first four of the last five completed CQs. A few States use a different base period. In the following states, more recent earnings may be used in an alternative base period under certain conditions: AK, AR, CA, CO, CT, DE, DC, GA, HI, ID, IL, IA, KS, ME, MD, MA, MI, MN, MT, NE, NV, NH, NJ, NM, NY, NC, OH, OK, OR, PR, RI, SC, SD, UT, VT, VA, VI, WA, WV, and WI.”
3838

0 commit comments

Comments
 (0)