有人可以解释一下为什么为什么在众多通讯中提到的“ ReporteRs”软件包不再可用,以使这类导出成为可能吗?什么是替代品?我读到有关替代方案的提及:“军官”,但找不到。非常感谢您的帮助 。斧头
答案 0 :(得分:0)
如果要将R图形导出到Powerpoint,还可以使用基于CRAN上的export
构建的包装程序包officer
,请参见
https://cran.r-project.org/web/packages/export/index.html和演示
https://github.com/tomwenseleers/export
典型语法非常简单,例如:
install.packages("export")
library(export)
library(ggplot2)
qplot(Sepal.Length, Petal.Length, data = iris, color = Species,
size = Petal.Width, alpha = I(0.7))
graph2ppt(file="ggplot2_plot.pptx", width=6, height=5)
您还可以使用它导出到Word,Excel,Latex或HTML,还可以导出各种R stats对象的统计输出。