Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 R 中使用 igraph 绘制树非常简单
library(igraph) plot(graph.tree(20, 2), layout=layout.reingold.tilford)
是否可以“翻转图形”,使根(节点 0)位于图的顶部?或者,是否可以将根放在左中?
我知道的最简单的方法是这样的:
plot(graph.tree(20, 2), layout=layout.reingold.tilford, ylim=c(1,-1))
我不知道这是否得到官方的支持。