我一直在使用优秀的包texreg
从适合的模型对象生成LaTeX就绪回归表,但它似乎与调整我的标准错误以进行聚类的各种函数兼容。一些虚假的数据和代码给出了一个示例和下面的错误消息。
关于如何获得我想要的输出的任何想法(类似于我从texreg
得到的)?
x = rnorm(1000)
IDs = ceiling(seq(from = .1, to = 10,length.out=1000))
s = c(rep(rnorm(1),100),rep(rnorm(1),100),rep(rnorm(1),100),rep(rnorm(1),100),rep(rnorm(1),100),rep(rnorm(1),100),rep(rnorm(1),100),rep(rnorm(1),100),rep(rnorm(1),100),rep(rnorm(1),100))
y = 3*x + 1.5^(IDs)*rnorm(n=1000,sd=s^2)*x + rnorm(1000)*.3
IDs = as.factor(IDs)
d = data.frame(x,IDs,y)
m = lm(y~IDs+x,data=d)
summary(m)
library(texreg)
texreg(m,omit.coef="IDs")
\begin{table}
\begin{center}
\begin{tabular}{l c }
\hline
& Model 1 \\
\hline
(Intercept) & $0.12$ \\
& $(4.50)$ \\
x & $5.28^{***}$ \\
& $(1.41)$ \\
\hline
R$^2$ & 0.02 \\
Adj. R$^2$ & 0.01 \\
Num. obs. & 1000 \\
\hline
\multicolumn{2}{l}{\scriptsize{\textsuperscript{***}$p<0.001$,
\textsuperscript{**}$p<0.01$,
\textsuperscript{*}$p<0.05$}}
\end{tabular}
\caption{Statistical models}
\label{table:coefficients}
\end{center}
\end{table}
cl <- function(dat,fm, cluster){
cluster = as.numeric(cluster)
attach(dat, warn.conflicts = F)
library(sandwich)
library(lmtest)
M <- length(unique(cluster))
N <- length(cluster)
K <- fm$rank
dfc <- (M/(M-1))*((N-1)/(N-K))
uj <- apply(estfun(fm),2, function(x) tapply(x, cluster, sum));
vcovCL <- dfc*sandwich(fm, meat=crossprod(uj)/N)
coeftest(fm, vcovCL) }
result = cl(d,m,IDs)
texreg(result,omit.coef="IDs")
(函数(classes,fdef,mtable)中的错误:无法找到 签名'“coeftest”'
的函数'extract'的继承方法
答案 0 :(得分:3)
包装插图的第5.5节提供了一个解决方案。包装小插图在“统计软件期刊”上发表。它可以在这里找到:http://www.jstatsoft.org/v55/i08/。
更具体地说,必须从您的result
矩阵中提取强大的标准误差和p值,并通过texreg
和override.se
参数移交给override.pval
:< / p>
se <- result[, 2]
pval <- result[, 4]
screenreg( # display the results in the R console
m,
omit.coef = "IDs",
override.se = se,
override.pval = pval
)
texreg( # for LaTeX output
m,
omit.coef = "IDs",
override.se = se,
override.pval = pval
)
另一种方法是从原始模型中提取系数,将它们保存到texreg
对象中,操纵此对象,然后将其移交给texreg
函数:
tr <- extract(m)
tr@pvalues <- result[, 4]
tr@se <- result[, 2]
screenreg(tr) # or texreg including your original arguments...