我正在尝试将R输出表导出到word文件。我正在使用ReporteRs
包来执行此操作。我捕获输出并将其传递给段落。在这种方法中,整洁的输出变得扭曲,并且在控制台中或保存到文本文件时看起来不太好。如何将输出原样传递给word文件?先感谢您。
data("cars2")
mydoc = docx(title = "Summary")
library(gmodels)
aal<-capture.output(CrossTable(cars2$Country, cars2$Type, digits=2, chisq=T))
#capture.output(CrossTable(cars2$Country, cars2$Type, digits=2, chisq=T, format="SPSS"), file="tests.txt")
mydoc<-addParagraph( mydoc, aal)
writeDoc( mydoc, file = "Summary.docx")
答案 0 :(得分:2)
您必须使用等宽字体(因为R控制台输出使用等宽字体)
library(gmodels)
data(infert, package = "datasets")
xx=capture.output(CrossTable(infert$education, infert$induced, expected = TRUE, format="SPSS"))
解决方案1:使用使用等宽字体的现有样式(来自您的模板),即默认模板中的rRawOutput
library( ReporteRs )
mydoc <- docx(title = "Summary")
mydoc <- addParagraph( mydoc, xx, stylename = "rRawOutput" )
writeDoc( mydoc, file = "Summary.docx")
解决方案2:使用pot
函数创建一段具有指定等宽字体的文本
library( ReporteRs )
mydoc <- docx(title = "Summary")
mypot <- pot( paste(xx, collapse = "\n"),
format = textProperties(font.family = "Courier New", font.size = 9) )
mydoc <- addParagraph( mydoc, mypot, par.properties = parLeft() )
writeDoc( mydoc, file = "Summary.docx")
解决方案3 :这个没有真正回答你的问题,因为它不使用gmodels但是我喜欢输出:
library( ReporteRs )
library( rtable )
library( broom )
data(infert, package = "datasets")
myft = freqtable(table(infert$education, infert$induced))
ct = chisq.test(infert$education, infert$induced)
mydoc = docx(title = "Summary")
mydoc = addTitle(mydoc, "Table", level = 2)
mydoc = addFlexTable( mydoc, myft )
mydoc = addTitle(mydoc, "Chi-squared Test", level = 2)
mydoc = addFlexTable( mydoc, vanilla.table( tidy(ct) ) )
writeDoc( mydoc, file = "Summary.docx")