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 を試しましたが、視覚化せずに x、y 座標を取得する方法がわかりませんでした。
どんなヒントでも素晴らしいでしょう
igraph の DrL レイアウトは、大きなグラフに適しています。座標を取得できなかった理由はわかりませんが、かなり単純です。
library(igraph) g <- ba.game(10000, 2) system.time(coords <- layout.drl(g)) # user system elapsed # 93.629 0.726 96.424 dim(coords) # [1] 10000 2