我目前正在对总体数据进行一些数据分析,因此在参数系数表中报告标准误差实际上并没有统计学意义。我已经做了相当多的搜索,找不到任何定制xtable输出以将其删除的方法。谁能指出我正确的方向?

非常感谢,我没有轻易发布此信息。如果很明显,我很抱歉浪费时间!

最佳答案

所以在我(另一个)整个漫长的回答之后……这也起作用:

xtable(summary(model1)$coefficients[,c(1,3,4)])

或更笼统地说:
sm <- summary(SomeModel)
SE.indx <- which(colnames(sm$coefficients) == "Std. Error")   # find which column is Std. Error (usually 2nd)
sm$coefficients <- sm$coefficients[, -SE.indx]  # Remove it
xtable(sm$coefficients)   # call xtable on just the coefficients table

结果:
% latex table generated in R 2.15.1 by xtable 1.7-0 package
% Sun Dec  9 00:01:46 2012
\begin{table}[ht]
\begin{center}
\begin{tabular}{rrrr}
  \hline
 & Estimate & t value & Pr($>$$|$t$|$) \\
  \hline
(Intercept) & 29.80 & 30.70 & 0.00 \\
  crim & -0.31 & -6.91 & 0.00 \\
  age & -0.09 & -6.50 & 0.00 \\
   \hline
\end{tabular}
\end{center}
\end{table}

10-06 01:43