Hello everyone,
I have been reading Card and Krueger (1994) since I am going to develop a similar model for my thesis work. And first I wanted to replicate their work in order to understand what they did. When I was trying to do table 3, I got the following doubt. First, they got the mean value for FTE (full-time employment) before the policy change and the mean value for FTE after the policy change. This simply can be done with the following ttest command:
Then I created the differences of these two variables:
However, instead of getting row 3, I got row 3 of table 3 (Attached image). So, I tried to comparing the means of emptot2 and empto3 and I got the values of row 3, However, the standard errors are different, I think that they might have a different software of program back in that time.
What kind of command should I use in order to get row 3 of column 3 (iii) ? I tried running the diff command, but first reshaping the whole data with unsuccessful results.
Best Regards,
I have been reading Card and Krueger (1994) since I am going to develop a similar model for my thesis work. And first I wanted to replicate their work in order to understand what they did. When I was trying to do table 3, I got the following doubt. First, they got the mean value for FTE (full-time employment) before the policy change and the mean value for FTE after the policy change. This simply can be done with the following ttest command:
Code:
ttest emptot, by(pa) unequal ttest emptot2, by(pa) unequal
Code:
gen d_emp=emptot2-emptot ttest d_emp, by(pa) unequal
Code:
by nj, sort: ttest emptot2=emptot, unpaired
Best Regards,
Comment