Code:
* OLS regression without factor variable sysuse auto, clear regress price weight mpg rep78 foreign esttab, drop(rep78) // this drop is fine * OLS regression with factor variable sysuse auto, clear regress price weight mpg i.rep78 foreign esttab, drop(rep78) // not working, how to drop factor coefficients in regression table? esttab, drop(i.rep78) // not working esttab, drop(`rep78') // not working
0 Response to Esttab: Drop factor variables in regression output
Post a Comment