Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: st:transition from unemployment
From
Katya Galactionova <[email protected]>
To
[email protected]
Subject
Re: st:transition from unemployment
Date
Sat, 21 Apr 2012 02:15:51 -0700
presumably you have some sort of a person level identifier, say:
PERSID, then what you want could be accomplished by creating dummies
for each transition scenario:
foreach s in emp olf unemp {
by persid year, sort: gen `s'=(status[_n+1]=="`s'")
}
Note: this will work if in your base year (2002) all records are unemployed.
see more:
Cox N. "Speaking Stata: How to move step by: step." The Stata Journal
(2002). 2(1):86-102
http://www.stata-journal.com/sjpdf.html?articlenum=pr0004
Cheers!
2012/4/21 Мещеряков Антон <[email protected]>:
> Dear STATA users,
>
> I would like to define status transitions from unemployment to employment, unemployment to olf, unemployment to unempl during two years.
>
> In 2002 the respondents are unemployed, but in 2003 they may change they status becoming empl or olf, however, they may also stay at unemployment.
>
> Data looks like (status change for one respondent during two years):
>
> status year
> unemp 2002
> unemp 2002
> emp 2003
> emp 2003
> unemp 2002
> emp 2003
> olf 2003
> unemp 2002
> unemp 2002
> unemp 2003
> olf 2003
> unemp 2002
> emp 2003
> olf 2003
>
> I need to identify and fix the quantity of the FIRST status change: transition from unemployment(2002) to status(emp, olf or unemp) in 2003.
> Could you please help if you have ideas how to do it right?
>
> Thanks in advance.
>
> *
> * For searches and help try:
> * http://www.stata.com/help.cgi?search
> * http://www.stata.com/support/statalist/faq
> * http://www.ats.ucla.edu/stat/stata/
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/