Dear All,
I have a data which satisfy the assumptions of Athey and Imbens(2006) "Non-Linear Differences in Differences Model: Inference and Interpretation. They suggested the changes in changes model for discrete dependent outcome variables. Lastly, they suggested if the model satisfy all the assumption the interpretation for the interaction term can be done by co-efficients or odd ratio. Furthermore, while referring the literature for non-linear model interaction term ex. Puhani(2013) Norton(2004) Richard(2012), I have two options, either to use "margins" command or use "inteff" command advocated by Richard(2012).
My model is like
For the analysis I have "strongly balanced panel data", further I have matched the individuals on set of observable characteristics using propensity score, suggested by Heckman(1978) and Rubin(1995) and Athey & Ibmens (2006). Moreover, all the variables are code with 0 and 1, where both has meaning. Here we have two time period i.e. pre and post, moreover the Treated_State is a factor variable identifying the states which received special treatment.
The objective of the present study is to predict the Pr(Y=1) for the individuals who received treatment overtime. In addition, I also want to estimate the treatment effect (interaction term) over urban and treated state, to see how the treatment effect varies in between Treated State and Non-Treated State in rural and urban areas.
Therefore, to see the marginal effect ( I want to calculated conditional marginal effect ) of the interaction term only I have used the following command.
Furthermore, to see the conditional marginal effect of the interaction over Treated State and Rural region, the following command is used;
My Question: Have I correctly written the margins command to see the TREATMENT EFFECT with time period over Treated Stated in rural and urban areas. I am confused in using the above command, or shall use the following command-
In addition, I have also tried the inteff command. in STATA 13.0 for my xtlogit model, it seems that the command doesn't support my model.
I have a data which satisfy the assumptions of Athey and Imbens(2006) "Non-Linear Differences in Differences Model: Inference and Interpretation. They suggested the changes in changes model for discrete dependent outcome variables. Lastly, they suggested if the model satisfy all the assumption the interpretation for the interaction term can be done by co-efficients or odd ratio. Furthermore, while referring the literature for non-linear model interaction term ex. Puhani(2013) Norton(2004) Richard(2012), I have two options, either to use "margins" command or use "inteff" command advocated by Richard(2012).
My model is like
Code:
xtlogit Y i.Time i.Treatment i.Treatment#i.Time i.urban i.Treated_State, or nolog
For the analysis I have "strongly balanced panel data", further I have matched the individuals on set of observable characteristics using propensity score, suggested by Heckman(1978) and Rubin(1995) and Athey & Ibmens (2006). Moreover, all the variables are code with 0 and 1, where both has meaning. Here we have two time period i.e. pre and post, moreover the Treated_State is a factor variable identifying the states which received special treatment.
The objective of the present study is to predict the Pr(Y=1) for the individuals who received treatment overtime. In addition, I also want to estimate the treatment effect (interaction term) over urban and treated state, to see how the treatment effect varies in between Treated State and Non-Treated State in rural and urban areas.
Therefore, to see the marginal effect ( I want to calculated conditional marginal effect ) of the interaction term only I have used the following command.
Code:
margins Treatment#Time, level(95) marginsplot, ylin(0) noci
Code:
margins Treatment#Time, at (urban=(0 1) Treated_State=(0 1)) level(95) marginsplot, ylin(0) noci
Code:
margins, dydx(JSY) at (Period=(0 1) Treated_State=(0 1) urban=(0 1)) level(95) marginsplot, ylin(0) noci
Comment