使用时,texreg
我经常使用omit.coef
以下方式删除某些估计值(对于固定效应)。
screenreg(lm01,omit.coef='STORE_ID',custom.model.names = c("AA"))
在我的lm
模型中,如果我使用多个固定效应,如何省略多个变量?例如,我有两种类型的固定效果 - STORE_ID 和 Year,比方说。
这不起作用。
screenreg(lm01,omit.coef=c('STORE_ID','Year'),custom.model.names = c("AA"))