简体   繁体   English

R texreg:如何选择要显示的gof统计数据?

[英]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. 我正在使用texreg为plm生成面板回归的输出表。 I would like to surpress the output of all gof statistics. 我想压抑所有gof统计数据的输出。 That is rather than showing R2, adj R2 and N. I would like to only show adj R2. 这不是显示R2,而是显示R2和N.我只想显示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 : 只需在texreg的调用中包含以下参数:

include.rsquared = F, include.adjrs = TRUE, include.nobs = F

Eg: 例如:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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