更改流程图表节点的大小

时间:2019-03-25 18:35:31

标签: r diagrammer

我有一个包含50到100个节点的流程图,并且使用BupaR生成的流程图是不可读的。我需要能够更改节点的大小,以便它们可读。我正在使用R markdown显示此内容。

我尝试使用以下代码将其导出为无向网络图:

patients %>% 
  process_map( render='FALSE') %>%
  # Render the graph using the
  # `visNetwork` output option
  #create_graph() %>%
  render_graph(layout = "fr",
               output = "visNetwork")

产生了麻线球(并且不可读)

```
install.packages("bupaR")
install.packages("edeaR")
install.packages("eventdataR")
install.packages("processmapR")
library("edeaR")
library("eventdataR")
library("processmapR")
library("bupaR")
patients %>%
  process_map()
```

0 个答案:

没有答案