有没有办法将CrossTable
(从gmodels
包裹)导出到Latex?
所以,如果我这样做:
let = sample(c("A","B"), 10 , replace=TRUE)
num = sample(1:3, 10 , replace=TRUE)
tab = CrossTable(let , num, prop.c = FALSE,prop.t = FALSE, prop.chisq=FALSE)
有没有办法将标签导出到乳胶表?
使用CrossTable
不是首选。我只需要能够在同一个单元格中获得计数和行百分比的东西。
答案 0 :(得分:5)
基于gmodels
'包文档,函数CrossTable()
以列表形式返回结果。因此,我没有看到将结果导出为LaTeX格式的任何问题。您只需将该列表转换为数据框即可。然后,您可以选择各种R
包,其中包含将数据帧转换为LaTeX格式的函数。例如,您可以使用df2latex()
包中的psych
。或者,您可以使用latex()
包中的latexTabular()
或Hmisc
。前者将数据帧转换为TeX文件,而前者将数据帧转换为tabular
环境中相应对象的LaTeX代码(LaTeX表)。
<强>更新强>
初步尝试 - 不起作用,因为CrossTable()
的结果不是一个简单的列表:
library(gmodels)
library(Hmisc)
let <- sample(c("A","B"), 10, replace = TRUE)
num <- sample(1:3, 10, replace = TRUE)
tab <- CrossTable(let, num, prop.c = FALSE, prop.t = FALSE, prop.chisq = FALSE)
myList <- lapply(1:ncol(tab), function(x) as.character(unlist(tab[, x])))
myDF <- as.data.frame(cbind(myList), stringsAsFactors = FALSE)
myLatex <- latexTabular(myDF)
进一步努力
嗯,它比我最初的想法有点棘手,但有两种方式,我认为。请参阅下文。
第一个选项是将CrossTable转换为数据框
myDF <- as.data.frame(tab)
然后根据您的要求手动重塑初始数据框(抱歉,我不太熟悉交叉制表)。
第二个选项使用Rz
包(安装有点烦人,因为它想要安装Gtk,但在关闭GUI之后,你可以正常调用R session中的函数,如下所示。
library(Rz)
let <- sample(c("A","B"), 10, replace = TRUE)
num <- sample(1:3, 10, replace = TRUE)
tab <- crossTable(let, num) # note that I use crossTable() from 'Rz' package
# Console (default) output
summary(tab)
=================================
num
--------------------
let 1 2 3 Total
---------------------------------
A 0 2 1 3
0.0% 66.7% 33.3% 100%
B 1 2 4 7
14.3% 28.6% 57.1% 100%
---------------------------------
Total 1 4 5 10
10.0% 40.0% 50.0% 100%
=================================
Chi-Square Test for Independence
Number of cases in table: 10
Number of factors: 2
Test for independence of all factors:
Chisq = 1.4286, df = 2, p-value = 0.4895
Chi-squared approximation may be incorrect
Please install vcd package to output Cramer's V.
# Now use LaTeX output
summary(tab, latex = TRUE)
\begin{table}[htbp]
\centering
\caption{let $\times$ num}
\begin{tabular}{lrrrr}
\toprule
& \multicolumn{3}{c}{num} & \\
\cline{2-4}
let &\multicolumn{1}{c}{1}&\multicolumn{1}{c}{2}&\multicolumn{1}{c}{3}&\multicolumn{1}{c}{Total} \\
\midrule
A & 0 & 2 & 1 & 3 \\
& 0.0\% & 66.7\% & 33.3\% & 100\% \\
B & 1 & 2 & 4 & 7 \\
& 14.3\% & 28.6\% & 57.1\% & 100\% \\
\midrule
Total& 1 & 4 & 5 & 10 \\
& 10.0\% & 40.0\% & 50.0\% & 100\% \\
\bottomrule
\end{tabular}
\end{table}
Chi-Square Test for Independence
Number of cases in table: 10
Number of factors: 2
Test for independence of all factors:
Chisq = 1.4286, df = 2, p-value = 0.4895
Chi-squared approximation may be incorrect
Please install vcd package to output Cramer's V.
完成!