Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 texreg 为带有 plm 的面板回归生成输出表。我想压制所有 gof 统计数据的输出。这不是显示 R2、adj R2 和 N。我只想显示 adj R2。有谁知道一个简单的方法来做到这一点?
好的,这实际上很容易。只需在调用中包含以下参数texreg:
texreg
include.rsquared = F, include.adjrs = TRUE, include.nobs = F
例如:
screenreg(model.list, include.rsquared = F, include.adjrs = TRUE, include.nobs = F)