简体   繁体   中英

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?

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

Eg:

screenreg(model.list, include.rsquared = F, include.adjrs = TRUE, include.nobs = F)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM