gpt4 book ai didi

r - 在 R 中查找强簇和弱簇及其成员资格

转载 作者:行者123 更新时间:2023-12-03 03:11:00 25 4
gpt4 key购买 nike

我应该找到弱集群和集群中节点的成员资格,以及强集群和集群中节点的成员资格。

我的代码:

library(igraph)
g <- erdos.renyi.game(8, 15/100)
is.connected(g, mode=("strong"))
clusters(g, mode="strong")
no.clusters(g, mode="strong")
cluster.distribution(g, cumulative = FALSE, mul.size = FALSE)

作为解决方案,我得到了这个:

> library(igraph)
> g <- erdos.renyi.game(8, 15/100)
> is.connected(g, mode=("strong"))
[1] FALSE
> clusters(g, mode="strong")
$membership
[1] 1 2 1 1 3 1 4 1

$csize
[1] 5 1 1 1

$no
[1] 4

> no.clusters(g, mode="strong")
[1] 4
> cluster.distribution(g, cumulative = FALSE, mul.size = FALSE)
[1] 0.00 0.75 0.00 0.00 0.00 0.25

但是我不知道哪些是我的强簇,我如何用不同的颜色绘制我的强簇?R studio 有没有什么好的教程,因为 R studio 的资源不多?

最佳答案

集群位于 membership部分clusters(g, mode="strong")

set.seed(247)
library(igraph)
g <- erdos.renyi.game(8, 15/100)

它们按照图中节点的顺序排列,例如

V(g) # the nodes in your graph are 1-8
#Vertex sequence:
#[1] 1 2 3 4 5 6 7 8

# the respective cluster for nodes 1-8 are:
clusters(g, mode="strong")$membership
#[1] 1 2 3 1 1 4 5 2

要在绘图中为这些着色,请执行以下操作:

strongclusters <- clusters(g, mode="strong")$membership
plot(g, vertex.color = strongclusters)

enter image description here

关于r - 在 R 中查找强簇和弱簇及其成员资格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20725411/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com