gpt4 book ai didi

r - 将 flextable、ggplot、文本和图像组合成一个网格对象,然后将其添加到 powerpoint 幻灯片

转载 作者:行者123 更新时间:2023-12-04 01:54:22 25 4
gpt4 key购买 nike

我想知道是否可以将 flextable/regulartable、ggplot、文本和图像组合成一个网格对象,然后将该网格放入 PowerPoint 幻灯片中?

这对于在 powerpoint 幻灯片中排列对象非常有用,而不必总是被迫计算每个对象的坐标。

我看到了一个通过 grid.arrange ( r - Why can't I send a group of plots in a grid to PowerPoint with OfficeR? ) 组合和排列 ggplot 对象的示例,但是如果我还想添加一个 flextable 或一个新的文本段落,它就不再起作用了。

有没有办法改进网格布局的表示层?

谢谢!

最佳答案

从 flextable 版本 0.5.3 开始是可能的。有很多方法可以实现这一点,这里是一个例子:

library(ggplot2)
library(grid)
library(cowplot)
library(dplyr)
# remotes::install_github("davidgohel/flextable")
library(flextable)

gg1 <- ggplot(iris, aes(Sepal.Length, Petal.Length, color = Species) ) + geom_point()

ft_raster <- iris %>% group_by(Species) %>%
summarise_all(median) %>%
flextable() %>% autofit() %>%
as_raster()

gg2 <- ggplot() +
theme_void() +
annotation_custom(rasterGrob(ft_raster), xmin=-Inf, xmax=Inf, ymin=-Inf, ymax=Inf)

cowplot::plot_grid(gg1, gg2, nrow = 2, ncol = 1, rel_heights = c(3, 1) )

结果如下

enter image description here

关于r - 将 flextable、ggplot、文本和图像组合成一个网格对象,然后将其添加到 powerpoint 幻灯片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51419759/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com