我已经使用 gridextra 创建了一个 qicharts2 绘图网格,但是当我尝试使用官员将其发送到 PowerPoint 时,我收到了这个错误。
doc_parse_raw 中的错误(x,编码 = 编码,base_url = base_url,as_html = as_html,:StartTag:无效元素名称 [68]
这是我的代码:
library(qicharts2)
library(gridExtra)
library(officer)
library(rvg)
#24 random numbers from a normal distribution for example.
y1 <- rnorm(24)
y2 <- rnorm(24)
yC1 <- qic(y1)
yC2 <- qic(y2)
grid <- grid.arrange(yC1,yC2)
filename <- "C:\\Desktop\\MyCharts.pptx"
read_pptx(filename) %>%
add_slide(layout = "Title and Content", master = "Office Theme") %>%
ph_with_vg(code = print(grid), type = "body") %>%
print(target = filename) %>%
invisible()
非常感谢大家就如何改进我的问题提出建议。
任何帮助进一步帮助大大收到