1

当使用官员和 rvg 图形时,我希望我的图像没有背景白色方块。这样做的原因是一些函数在顶部留下了很多空白空间,这通常会与标题重叠。我可以进去删除每一个,但是当制作 20 个或更多的地块时,这很快就会变得乏味。

具体来说,我想将它与示例中使用的 metafor 中的森林函数一起使用。

在删除背景之前。

在此处输入图像描述

**

删除背景后。

** 在此处输入图像描述

library(officer)
doc <- read_pptx()
doc <- add_slide(doc, "Title and Content", "Office Theme")
doc <- ph_with_vg_at(doc, code = barplot(1:5, col = 2:6),
                     left = 1, top = 2, width = 6, height = 4)


library(metafor)
library(gemtc)
network <-mtc.network(smoking$data.ab)
data(dat.bcg)
plot(network)
res <- rma(ai=tpos, bi=tneg, ci=cpos, di=cneg, data=dat.bcg, measure="RR",
           slab=paste(author, year, sep=", "), method="REML")
forest(res)
doc <- add_slide(doc, "Title and Content", "Office Theme")
doc <-  ph_with_vg(doc, code = plot(network), type = "body", width = 8, height = 6)
doc <- add_slide(doc, "Title and Content", "Office Theme")
doc <-  ph_with_vg(doc, code = forest(res), type = "body", width = 8, height = 6)

print(doc, target = "vg.pptx")
4

1 回答 1

1

现在可以使用最新的 rvg 更新并将背景设置为“NA”。

anyplot = dml(code = barplot(1:5, col = 2:6), bg = "NA")

    doc <- read_pptx()
    doc <- add_slide(doc)
    doc <- ph_with(doc, anyplot, location = ph_location_fullsize())

    print(doc, target = "bg.pptx")
于 2020-05-15T21:37:57.180 回答