目标(在 R 环境中):从数据框中提取节点和边,以使用它们对图形进行建模!!
我正在尝试学习如何使用 DiagrammeR 或任何其他图形建模库,以便从数据框中获取如下图(您可以点击链接 [The GRAPH 1 ]):
数据框:
a b c classes
1 2 0 a
0 0 2 b
0 1 0 c
我已经通过这些命令手动DiagrammeR library
使用和定义了节点和边:
library(DiagrammeR)
egrViz("
digraph boxes_and_circles{
#add the node statement
node[shape=box]
a; b; c;
#add the nodge statement
a->a [label=1]; a-> b[label=2]; b->c[label=2]; c->b[label=1]
graph [nodesep=0.1]
}
")
您能帮我理解如何自动获取节点和边吗?先感谢您。