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))
ただし、それが正式にサポートされているかどうかはわかりません。