模仿Gephi中“无重叠”布局的Igraph布局

时间:2018-10-24 20:46:08

标签: r layout igraph

我有一个社交网络图,看起来与igraph类似:

set.seed(123)
g <- igraph::erdos.renyi.game(125, .025)
V(g)$size <- degree(g)+5
V(g)$label <- NA


plot(g)

enter image description here

我想绘制此图而没有任何顶点重叠。是否有任何布局功能将消除重叠但保持图形的整体外观?

0 个答案:

没有答案