Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: minor
changes:
added:
- weeks_unemployed input variable for weeks looking for work
13 changes: 13 additions & 0 deletions policyengine_us/variables/gov/states/weeks_unemployed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from policyengine_us.model_api import *


class weeks_unemployed(Variable):
value_type = float
entity = Person
label = "weeks unemployed"
unit = "week"
documentation = (
"Number of weeks during the year the person was looking for work. "
"From CPS ASEC variable LKWEEKS."
)
definition_period = YEAR
Loading