如何使用软件包“ oglmx”为GOLM获取良好的输出表?

时间:2018-11-22 09:33:45

标签: stargazer texreg

我使用“ oglmx”软件包运行了广义序数线性模型-到目前为止,一切都很好。该模型指定如下:

   scarce.cs.golm <- oglmx(as.factor(SCARCE) ~ region + wavet + sex + age.s + edu + income + urban + reli2 + 
                           GDPcapita_y.log  + fmlabfor_y.s +GPIter_y.s + trade_y.s + FDI_y.s + sap_y + 
                           polity + marxcom + patrstate1, data = wvsf,weights = weight1, link="probit",
                           constantMEAN = T, constantSD = T,threshparam = c(1.78,2.89))

现在,我想将结果保存在一个不错的输出表中。通常,我使用stargazer或htmlreg(来自“ texreg”软件包),但这不适用于oglmx。甚至screenreg都不起作用。出现以下错误消息:

无法找到签名“ oglmx”的函数“提取”的继承方法

有人知道如何处理该问题吗?非常感谢您的任何帮助,谢谢!

1 个答案:

答案 0 :(得分:1)

我刚刚通过编写提取函数将oglmx类添加到texreg中。但是,由于需要批准“拉取请求”,因此仍未放入包装中。

如果您仍然急需它,可以执行以下操作:

install.packages("devtools")
install_github("czucca/texreg", ref = "oglmx")
library(texreg)

然后使用

htmlreg(scarce.cs.golm) 

它有效!

希望这会有所帮助, C。