Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

r

s4

texreg

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?

like image 225
Andy Avatar asked Sep 04 '14 17:09

Andy


1 Answers

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)
like image 194
Andy Avatar answered Oct 10 '22 06:10

Andy