标签: r igraph
在igraph包的文档中有一个例子
igraph.options(plot.layout=layout.reingold.tilford) plot(graph.tree(20, 2))
输出应将数据表示为树。但我得到的是
答案 0 :(得分:12)
您显然需要指定根目录:
library(igraph) g <- graph.tree(20, 2) plot(g, layout = layout.reingold.tilford(g, root=1))