我正在尝试使用 ReporteRs 在 R 中创建一个幻灯片。我已经使用 ggplot2 创建了我的图表。我安装了 ReporteRs 没有问题,我可以创建一个新的 pptx,添加幻灯片和标题,但是当它到达addPlot
Rstudio 时,它会在崩溃之前稍微处理它,给我 R Studio 中止并遇到致命错误的消息。有谁之前经历过这个吗?这是我为 ReporteR 编写的代码:
install.packages("ReporteRs")
library(ReporteRs)
WinR = pptx()
slide.layouts(WinR)
WinR = addSlide(WinR,"Title and Content")
WinR = addTitle(WinR, "Effect of Time on Total Root Length")
WinR = addPlot(WinR, Lengthplotfinal)`
Lengthplotfinal
是之前开发的条形图
谢谢!