Hi,
I am using a data similar to Card & Krueger (1994), so allow me to use this as an example.
treated is a dummy variable (treatment group = 1 and control group= 0) ; t is a dummy variable (baseline = 0 and follow-up= 0) ; fte_gt is an ordered multicategorical variable that is assigned the values 0, 1, 2. The higher the better.
My question is, in this case, how do I evaluate the effect of the policy (or treatment)?
Kind regards,
Ke Ju
I am using a data similar to Card & Krueger (1994), so allow me to use this as an example.
treated is a dummy variable (treatment group = 1 and control group= 0) ; t is a dummy variable (baseline = 0 and follow-up= 0) ; fte_gt is an ordered multicategorical variable that is assigned the values 0, 1, 2. The higher the better.
Code:
. use http://fmwww.bc.edu/repec/bocode/c/CardKrueger1994.dta, clear . gen fte_gt = 0 . replace fte_gt = 1 if fte >= 15 & fte <= 20 . replace fte_gt = 2 if fte > 20
Kind regards,
Ke Ju

Comment