I’m running a logit regression with five independent variables, each representing an interaction between a time period of ~6 months (1; 0 == all other year-months represented in the other interactions) and status on a policy variable of interest (whether strict (1) or not (0)). Rather than use Stata’s # command for the interactions in the logit regression command, since it ends up dropping variables due to collinearity, I’ve generated each of the interactions myself, separately (e.g., var1==time1 * strict, etc.). Those interaction variables are:
In my regression, I omit var1. So it’s
My question is about the margins output that follows--do I interpret the marginal effects results (below) relative to the omitted category, var1? If not, is there a way to have the margins commands compare to var1? Thanks so much.
Code:
var1==time1*strict var2==time1*not strict var3==time2*strict var4==time2*not strict var5==time3*strict var6==time3*not strict
Code:
logit outcome var2 var3 var4 var5 var6 …
Code:
margins, dydx(i.var2) margins, dydx(i.var3) margins, dydx(i.var4) margins, dydx(i.var5) margins, dydx(i.var6)
Comment