Search code examples
rr-s4texreg

R texreg: How can I select the gof statistics to be displayed?


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?


Solution

  • 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)