尝试在powerpoint模板上添加绘图时R崩溃

时间:2017-05-31 09:57:04

标签: r powerpoint plotly reporters

我开发了一个使用R和闪亮库的仪表板,其中显示了一些不同的图表。这些不是静态图表,但它们是根据您可以通过某些底部设置的某些过滤器动态生成的。等等。

下一步,我现在正在研究的是创建一个powerpoint报告,包括我之前生成的那些图表。到目前为止,我得到了这段代码:

report <- pptx(template = 'report_template.pptx')
report <- addSlide(report,"report_layout") 
slide.layouts(report)
slide.layouts(report, "report_layout")
report <- addPlot(report, function() print(p))
writeDoc(report, "example_report.pptx")

通过这种方式创建一个给定的图表:

p <- plot_ly(agregado_cedex(), labels = ~Escalado, values = ~Total,type = "pie",
          text = ~Total, width = 500, height = 250, hoverinfo = "none") %>% config(displayModeBar = FALSE) %>%
layout(title = "Desglose incidencias", showlegend = TRUE,
       xaxis = list(showgrid = FALSE, zeroline = FALSE, showticklabels = FALSE),
       yaxis = list(showgrid = FALSE, zeroline = FALSE, showticklabels = FALSE))

此图表没有问题,因为它在闪亮的应用程序(仪表板)上正确显示。

执行上面的代码时,我在R Studio上收到下一个错误:

Warning: Error in .jcall: javax.xml.bind.UnmarshalException
 - with linked exception:
[org.xml.sax.SAXParseException: The markup in the document preceding the root element must be well-formed.]

我找到了类似的帖子,但到目前为止还没有解决Add plots in PPTx without crashing R using addplot()

有谁知道出了什么问题?提前谢谢!

1 个答案:

答案 0 :(得分:0)

ReporteRs不支持htmlwidgets。 addPlot使用基本绘图命令,ggplot2,网格和点阵。