覆盖subplot ggraph

时间:2018-03-13 20:45:38

标签: r ggplot2 overlay subplot ggraph

我需要在ggraph上覆盖一组子图。每个图对应一个特定的节点,因此必须使用每个节点的坐标来放置它们。以下代码创建图形和要覆盖的子图集。

 # Create the graph
 library(data.table)
 library(igraph)
 library(ggraph)

 mydata <- data.table(from=c("John", "John", "Jim"), to=c("John", "Jim", "Jack"))
 graph <- graph_from_data_frame(mydata)
 V(graph)$class <- c("John", "Jim", "Jack")

 ggraph(graph, layout = 'linear') + 
 geom_edge_link() + 
 geom_node_point() +
 geom_node_text(aes(label = class))

 # Plots to overlay
 John <- ggplot(diamonds, aes(carat)) + geom_histogram(fill = "red") + 
 ggtitle("John")
 Jim <- ggplot(diamonds, aes(depth)) + geom_histogram(fill = "blue") + 
 ggtitle("Jim")
 Jack <- ggplot(diamonds, aes(price)) + geom_histogram(fill = "green") + 
 ggtitle("Jack")

下图说明了实际和期望的结果。 enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用ggraph::create_layout提取节点的x和y坐标,然后使用purrr::pmapggplot2::annotation_custom应用于每个子图。

library(purrr)
library(ggplot2)
library(igraph)
library(ggraph)

# Your code, mostly unchanged (removed data.table)
mydata <- data.frame(from=c("John", "John", "Jim"), to=c("John", "Jim", "Jack"))
graph <- graph_from_data_frame(mydata)
V(graph)$class <- c("John", "Jim", "Jack")


John <- ggplot(diamonds, aes(carat)) + geom_histogram(fill = "red") + 
  ggtitle("John")
Jim <- ggplot(diamonds, aes(depth)) + geom_histogram(fill = "blue") + 
  ggtitle("Jim")
Jack <- ggplot(diamonds, aes(price)) + geom_histogram(fill = "green") + 
  ggtitle("Jack")

# New code
graph_df <- create_layout(graph, layout = 'linear')

graph_df是一个包含内容的数据框:

  x y name class ggraph.orig_index circular ggraph.index
1 1 0 John  John                 1    FALSE            1
2 2 0  Jim   Jim                 2    FALSE            2
3 3 0 Jack  Jack                 3    FALSE            3

您可以直接致电ggraph(graph_df);引擎盖ggraph(graph)正在做同样的步骤。

现在我们创建一个嵌套列表,其中第一个元素是我们想要用于插入的ggplot对象的列表(确保它们的顺序相对于它们在graph_df中的顺序)。第二个元素是x坐标列表,第三个元素是y坐标列表。然后我们应用一个构造grobs到嵌入的函数,使用x和y坐标来定义一个框,它将放在最终的图中。

grobs <- pmap(.l = list(plots = list(John, Jim, Jack), 
                        x = as.list(graph_df$x), 
                        y = as.list(graph_df$y)),

              .f = function(plots, x, y) {

    annotation_custom(grob = ggplotGrob(plots + theme_grey(base_size = 4)),
                      xmin = x - .25, xmax = x + .25,
                      ymin = y + .1,  ymax = y + .6)
  })

然后你上面的代码需要添加这个对象,并且有些限制了这些对象:

ggraph(graph_df) + 
  geom_edge_link() + 
  geom_node_point() +
  geom_node_text(aes(label = class)) + 
  expand_limits(x = c(0.5,3.5)) +
  coord_equal() +
  grobs

enter image description here

一些注意事项:

  • 插图的构建也可以使用purrr函数以编程方式完成。
  • 我们创建的函数中的base_size =参数需要根据您的喜好进行调整。
  • 函数中x和y的偏移量也必须根据实际绘图中的坐标范围手动完成。