Dear All,
I am currently facing challenges regards the use of DiD. I have a longitudinal data with two waves only (2009/2010 and 2014/2015). I am to analyze the changes in wealth due to child fostering. The fostering variable is an indicator variable with 1= foster, 0= non-foster. I constructed a wealth index using the MCA.
Is it appropriate to run a DiD by defining households who received foster children as my treatment variable and households who did not as the control variable with my time variable as year>2014 (being the follow-up data)?
Code:
gen time= (combdate >= td(05mar2014)) & !missing(year)
gen treatment = (foster_status==1) & !missing(foster_status)
My model is specified as follows:
Wit=B0 + B1Treatment + B2Time + B3Time*Treatment
Your advise would be highly appreciated.
Regards,
Stephen
I am currently facing challenges regards the use of DiD. I have a longitudinal data with two waves only (2009/2010 and 2014/2015). I am to analyze the changes in wealth due to child fostering. The fostering variable is an indicator variable with 1= foster, 0= non-foster. I constructed a wealth index using the MCA.
Is it appropriate to run a DiD by defining households who received foster children as my treatment variable and households who did not as the control variable with my time variable as year>2014 (being the follow-up data)?
Code:
gen time= (combdate >= td(05mar2014)) & !missing(year)
gen treatment = (foster_status==1) & !missing(foster_status)
My model is specified as follows:
Wit=B0 + B1Treatment + B2Time + B3Time*Treatment
Your advise would be highly appreciated.
Regards,
Stephen
Comment