When using texreg
I frequently use omit.coef
to remove certain estimates (for fixed effects) as below.
screenreg(lm01,omit.coef='STORE_ID',custom.model.names = c("AA"))
In my lm
model if I use multiple fixed effects how can I omit multiple variables? For example, I have two types of fixed effects - STORE_ID and Year, let's say.
This does not work.
screenreg(lm01,omit.coef=c('STORE_ID','Year'),custom.model.names = c("AA"))