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