Hello I run the following model
1. How do I show that the estimated coefficients of x1 and x2 are significantly different from x3 and x4 using Lincom command?
2. Can I also know how to get the marginal effect on boys and girls separately? Since I also interact the child level controls such as child's age(child_age) and whether mother passed matriculated (mother_matri) with the girl indicator?
3.Should I have mentioned child_age#girl_child mother_matri#girl_child outside the abs bracket?
Code:
*x1=explanatory variable *x2=treatement*girl *x3=lagged explanatory variable *x4=lagged explanatory variable*girl reghdfe y x1 x2 x3 x4 girl , absorb(year distid child_age mother_matri child_age#girl_child mother_matri#girl_child distid#c.year state_year) cluster(village_id)
2. Can I also know how to get the marginal effect on boys and girls separately? Since I also interact the child level controls such as child's age(child_age) and whether mother passed matriculated (mother_matri) with the girl indicator?
3.Should I have mentioned child_age#girl_child mother_matri#girl_child outside the abs bracket?
Comment