我想在R中创建一个包含DiagrammeR
包的流程图。应根据每个变量名称开头的标识符设置流程图的颜色。
构思以下可重现的示例:
library("DiagrammeR")
# Create a node data frame (ndf)
ndf <- create_node_df(n = 4,
label = c("^color", "aaa", "bbb", "ccc"))
# Create an edge data frame (edf)
edf <- create_edge_df(from = c(1, 2, 3, 3),
to = c(4, 3, 1, 4))
# Create a graph with the ndf and edf
graph <- create_graph(nodes_df = ndf,
edges_df = edf) %>%
set_global_graph_attrs(
attr = c("style", "fillcolor"),
value = c("filled", "darkolivegreen3"),
attr_type = c("node", "node"))
# Create a PDF file for the graph (`graph.pdf`)
graph %>%
render_graph()
使用set_global_graph_attrs
功能,我可以设置全局颜色。我想用红色开头的^为每个变量着色。在示例中,变量^ color应该用红色表示。流程图的其余部分应保持绿色。不幸的是,我无法找到解决此问题的方法。
问题:如何为流程图的某些节点使用不同的颜色?