繁体   English   中英

R DiagrammeR软件包-动态更新图表

[英]R DiagrammeR package - Dynamically update diagram

我试图在for循环的每个步骤中在R Studio查看器中更新一个图。

在循环结束时,我想获得以下内容:

希望结果

但是我得到这个:

不好的结果

上面的代码是这样的:

library(tidyverse)
library(DiagrammeR)

a_graph <-
  create_graph() %>%
  add_node(label = 'Start', type = 'actif', node_aes = node_aes(fillcolor = "orange",shape = "rectangle"
  ) ) 

a_graph %>% render_graph()


update_my_graph <- function(label, label_from){
  from_id <- which( (a_graph %>% get_node_df())$label==label_from )
  a_graph <<- a_graph %>% 
    select_nodes(
      conditions = 
        type == 'actif') %>%
    set_node_attrs_ws(
      node_attr = fillcolor,
      value = "blue") %>%
    clear_selection() %>% 
    add_node(label = label, from = from_id, type = 'actif', node_aes = node_aes(fillcolor = "orange",shape = "rectangle",fixedsize = FALSE))
  a_graph %>% render_graph(layout = "tree")
}

for(i in 1:5) update_my_graph(i,'Start')

R版本3.4.1(2017-06-30)-“ Single Candle” tidyverse 1.2.1 DiagrammeR 1.0.0 RStudio 1.1.383

您的功能确实正确。 “不良结果”实际上是您在第7行中的第一个a_graph %>% render_graph() ,并且没有进一步的绘图被调用,因此是结果。 要看到这一点,可以在进行for(i in 1:5) update_my_graph(i,'Start') 之前擦除该图。 您将看到没有绘图输出。 完成五次更新后,您可以再次调用a_graph %>% render_graph(layout = "tree") ,您会看到它已经为您提供了想要的结果。 该函数本身不打印图。

因此,执行以下操作很简单:

update_my_graph <- function(label, label_from){
  from_id <- which((a_graph %>% get_node_df())$label==label_from)
  a_graph <<- a_graph %>% 
    select_nodes(conditions = type == 'actif') %>%
    set_node_attrs_ws(node_attr = fillcolor, value = "blue") %>%
    clear_selection() %>% 
    add_node(label = label, from = from_id, type = 'actif', 
             node_aes = node_aes(fillcolor = "orange", 
                                 shape = "rectangle", 
                                 fixedsize = FALSE))
  print(a_graph %>% render_graph(layout = "tree"))
}

也就是说,只需将print放在a_graph %>% render_graph(layout = "tree")周围。 您也可以return(a_graph %>% render_graph(layout = "tree"))然后调用存储的图。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM