在 R 中合并不同 类 的图

Combine plots of different classes in R

我正在处理 r 中不同 classes 的图,即 tmap(主要图)和 ggplot(代表次要信息)。

library(raster)
library(tmap)
library(RStoolbox)
library(gridExtra)
library(ggplot2)

data("World")
r1 <- raster(ncol=2, nrow=2)
values(r1) <- c(1.5, -0.5, 0.5, -1.5)

r2 <- raster(ncol=2, nrow=2)
values(r2) <- c(1, 1, 0.5, -1.5)

# Then I create two tmap objects and two ggplot objects
tm1 <- tm_shape(World) + tm_polygons()  
tm2 <- tm_shape(World) + tm_polygons()

gg1 <- ggR(r1,  coord_equal = F, geom_raster = 1) + theme(legend.position = "none", axis.title = element_blank(), axis.text = element_text(size = 3.5))
gg2 <- ggR(r2,  coord_equal = F, geom_raster = 1) + theme(legend.position = "none", axis.title = element_blank(), axis.text = element_text(size = 3.5))

# Save each separately
# 1 tmap
current.mode <- tmap_mode("plot")
tmap_plot <- tmap_arrange(tm1, tm2, ncol = 1, nrow = 2)
tmap_save(tmap_plot, "tmap_plot.png", height = 8, width = 6)

# 2 ggplot
g <- arrangeGrob(gg1, gg2)
ggsave(file = "ggplot.png", g, height = 1.75, width = 1.75)

目前,我将每个class单独保存,然后使用手动编辑工具将它们合并。我正在寻找一个解决方案,如何在 r 中自动执行该过程。我也乐于接受建议,如何用其他编程语言来做,只是它使这个过程自动化。 切换到不同的 classes 不是我的选择。

您可以使用 grid::viewport.

直接在 tmap 上绘制 ggplots

首先,加载 grid 并设置所需的视口位置和尺寸:

library(grid)

subplot_vp <- viewport(x = 0.15, 
                       y = 0.35, 
                       width = unit(0.25, "npc"), 
                       height = unit(0.25, "npc"),
                       name = "inset")

现在你可以做

tm1
grid.draw(grobTree(ggplotGrob(gg1), vp = subplot_vp))

tm2
grid.draw(grobTree(ggplotGrob(gg2), vp = subplot_vp))