2

我在 R 中使用 xtable 来获取表格的 LaTeX 代码。我想修改“标题”的第一个元素(LaTeX 表中的第一行),但我只看到了一个将文本添加到行尾的选项(使用 xtable 中的 add.to.row)。

下面的例子应该澄清我想要什么。

跑步

xtable(matrix(c(1,0.25,3,0.75),nrow=2,dimnames=list(c('absolute','relative'),c('GNU','Leo'))))

给出输出

% latex table generated in R 2.13.0 by xtable 1.5-6 package
% Tue Jun 19 22:39:49 2012
\begin{table}[ht]
\begin{center}
\begin{tabular}{rrr}
  \hline
 & GNU & Leo \\ 
  \hline
absolute & 1.00 & 3.00 \\ 
  relative & 0.25 & 0.75 \\ 
   \hline
\end{tabular}
\end{center}
\end{table}

我想接电话

  frequency & GNU & Leo \\ 

而不是线

  & GNU & Leo \\

但我无法使用 xtable 完成此操作。如果您知道如何执行此操作,请告诉我。另外,如果这是在错误的地方询问,或者我忽略了答案或明显的解决方案,我会提前道歉。

4

2 回答 2

4

另一种选择是使用Hmisclatex中的函数:

library(Hmisc)
m <- matrix(c(1,0.25,3,0.75),nrow=2,dimnames=list(c('absolute','relative'),c('GNU','Leo')))
latex(m,file = "",rowlabel = "frequency")
于 2012-06-19T21:46:46.417 回答
3

一种可能:

dat1 <- data.frame(matrix(c(1,0.25,3,0.75),nrow=2,dimnames=list(c('absolute','relative'),c('GNU','Leo'))))
dat <- data.frame(Freq = rownames(dat1), dat1)

print(
  xtable(
           x = dat
         , caption = "Your Caption"
         , label = "tab:dat"
         , align = paste(paste("l|", paste(rep("r", ncol(dat)-1), collapse=''), sep = ""), "|r", sep = "")
         , digits = c(0, rep(3, ncol(dat)))
         )
  , table.placement = "H"
  , caption.placement = "top"
  , include.rownames = FALSE
  , include.colnames = TRUE
  , size = "normalsize"
  , hline.after = c(-1, 0, nrow(dat))
  )
于 2012-06-19T21:44:25.193 回答