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.
我有一个具有 100 个节点和 10 个邻居的格子,其构造方式如下:
d <- as.directed(graph.lattice(100, 0, nei=10, directed=FALSE, circular=TRUE))
现在我想以 0.1 的概率重新连接它
如果我使用 rewire() 它需要我设置“niter”而不是概率。
如何选择 niter 的值以使其对应于 0.1 的概率?
正如@Gabor 在评论中指出的那样,使用以下rewire.edges功能:
rewire.edges
d <- as.directed(graph.lattice(100, 0, nei=10, directed=FALSE, circular=TRUE)) d2 <- rewire.edges(d, 0.1)