0

我正在尝试在 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) -- “单蜡烛” tidyverse 1.2.1 DiagrammeR 1.0.0 RStudio 1.1.383

4

1 回答 1

1

你的功能是正确的,真的。“坏结果”实际上是您a_graph %>% render_graph()在第 7 行中的第一个,并且没有调用进一步的绘图,因此是结果。要看到这一点,您可以在经历之前擦除情节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"))
}

也就是说,只需printa_graph %>% render_graph(layout = "tree"). 您也可以return(a_graph %>% render_graph(layout = "tree"))调用存储的绘图。

于 2018-04-30T05:35:17.860 回答