如何在R hmisc中使用latex指定列的对齐方式

时间:2012-02-29 11:28:23

标签: r latex

我正在使用它:

latex(data, cgroup=c("sample1", "sample2"), n.cgroup=c(2,2), file="")

生成一个tex表。

输出如下:

\begin{table}[!tbp]
\begin{center}
\begin{tabular}{lrlrl}
\hline\hline
\multicolumn{1}{l}{sample1}&\multicolumn{1}{c}{sample2}&\multicolumn{1}{c}{abs reads}&\multicolumn{1}{c}{rel reads}&\multicolumn{1}{c}{abs reads.1}&\multicolumn{1}{l}{rel reads.1}\tabularnewline
\hline
...
%the content%
...
\hline
\end{tabular}
\end{center}
\end{table}

问题:如何改变这一点:

\begin{tabular}{lrlrl}

这样的事情:

\begin{tabular}{lrrrr}

使用乳胶功能?

1 个答案:

答案 0 :(得分:4)

col.just参数可能符合你的要求(很难猜出你的数据是什么样的)。

library(Hmisc)
latex(head(iris,3), file="", col.just=c("r","r","r","r","r"))