Reputation: 295
I'm using texreg to produce output tables for panel regressions with plm. I would like to surpress the output of all gof statistics. That is rather than showing R2, adj R2 and N. I would like to only show adj R2. Does anyone know of a simple way to do this?
Upvotes: 9
Views: 2342
Reputation: 295
OK, this was actually pretty easy. Just include the following arguments in the call of texreg
:
include.rsquared = F, include.adjrs = TRUE, include.nobs = F
E.g.:
screenreg(model.list, include.rsquared = F, include.adjrs = TRUE, include.nobs = F)
Upvotes: 12