Good afternoon
Since couple of hours I am struggling with calculating the share of individuals who exit from unemployment and enter employment ("exit ratio").
I have a spell-data (unbalanced panel) which has following structure:
"ID" describes the ID of individual; "Beginn" and "End" describe the beginn and end of spell; "Spelltype" denotes the type of spell (1 if unemployed, 0 if employed); "Unempl_dur" measures the duration of unemployment.
I am interested in plotting "exit ratio" with respect to unemployment duration. (It should look like positive skew, i.e. the mass of the distribution is concentrated on the left of the figure.)
I would appreciate any comments or suggestions.
Many thanks,
Christine
Since couple of hours I am struggling with calculating the share of individuals who exit from unemployment and enter employment ("exit ratio").
I have a spell-data (unbalanced panel) which has following structure:
Code:
* Example generated by -dataex-. To install: ssc install dataex
clear
input double ID float(Beginn End Interview Spelltype Unempl_dur)
1 555 614 614 1 59
1 555 614 590 1 59
1 555 614 568 1 59
2 590 595 590 1 19
2 609 614 614 0 19
3 540 590 580 1 50
3 540 590 590 1 50
3 540 590 568 1 50
4 540 639 590 1 99
4 540 639 602 1 99
end
format %tm Beginn
format %tm End
format %tm Interview
I am interested in plotting "exit ratio" with respect to unemployment duration. (It should look like positive skew, i.e. the mass of the distribution is concentrated on the left of the figure.)
I would appreciate any comments or suggestions.
Many thanks,
Christine
Comment