簡體   English   中英

按R中的顏色/子組在加權網絡中對iGraph頂點分組

[英]Grouping iGraph Vertices in a weighted network by color/subgroup in R

我正在努力按小組將我的網絡分組。 我目前有以下網絡:

當前網絡

我已經分配了這些子組。 我想繪制聚類在一起的所有子組。 要獲得如下所示的圖形:

目標

大多數算法似乎基於圖中的權重進行聚類。 但是我想告訴它基於節點顏色/標記的子組進行聚類。 這就是我現在要對該網絡進行編碼的內容:

#Graph with Weighted matrix
g_weighted<-graph.adjacency(WeightedMatrix, mode="undirected", weighted = TRUE)

#Make nodes different colors based on different classes
numberofclasses<-length(table(ConnectedVertexColor))
V(g_weighted)$color=ConnectedVertexColor
Node_Colors <- rainbow(numberofclasses, alpha=0.5)
for(i in 1:numberofclasses){
 V(g_weighted)$color=gsub(unique(ConnectedVertexColor[i],Node_Colors[i],V(g_weighted)$color)
}
#Plot with iGraph
plot.igraph(g_weighted,
            edge.width=500*E(g_weighted)$weight,
            vertex.size=15, 
            layout=layout.fruchterman.reingold,  ##LAYOUT BY CLASS
            title="Weighted Network",
            edge.color=ifelse(WeightedMatrix > 0, "palegreen4","red4")
            )
legend(x=-1.5, y=-1.1, c(unique(ConnectedVertexColor)), pch = 19, col=Node_Colors, bty="n")

ConnectedVertexColor是一個向量,其中包含有關節點是否為脂質,核苷酸,碳水化合物或AA的信息。 我已經嘗試過命令V(g_weighted)$community<-ConnectedVertexColor但是我無法將其轉換為iGraph的有用信息。

預先感謝您的建議。

由於您未提供數據,因此我根據您的“當前網絡”圖片進行猜測。 當然,您需要的是圖形的布局。 下面,我提供兩個函數來創建可能滿足您需求的布局。

首先,一些看起來像您的數據。

EL = structure(c(1, 5, 4, 2, 7, 4, 7, 6, 6, 2, 9, 6, 3, 10,
7, 8, 3, 9, 8, 5, 3, 4, 10, 13, 12, 12, 13, 12, 13, 15, 15,
11, 11, 14, 14, 11, 11, 11, 15, 15, 11, 11, 13, 13, 11, 13),
.Dim = c(23L, 2L))

g2 = graph_from_edgelist(EL, directed = FALSE)
Groups = c(rep(1, 10), 2,2,3,3,3)
plot(g2, vertex.color=rainbow(3)[Groups])

原始數據

第一版面

GroupByVertex01 = function(Groups, spacing = 5) {
         Position = (order(Groups) + spacing*Groups)
         Angle    = Position * 2 * pi / max(Position)
         matrix(c(cos(Angle), sin(Angle)), ncol=2)
}

GBV1 = GroupByVertex01(Groups)
plot(g2, vertex.color=rainbow(3)[Groups], layout=GBV1)

版式1

第二版面

GroupByVertex02 = function(Groups) {
         numGroups = length(unique(Groups))
         GAngle    = (1:numGroups) * 2 * pi / numGroups
         Centers   = matrix(c(cos(GAngle), sin(GAngle)), ncol=2)
         x = y = c()
         for(i in 1:numGroups) {
                 curGroup = which(Groups == unique(Groups)[i])
                 VAngle = (1:length(curGroup)) * 2 * pi / length(curGroup)
                 x = c(x, Centers[i,1] + cos(VAngle) / numGroups )
                 y = c(y, Centers[i,2] + sin(VAngle) / numGroups)
         }
         matrix(c(x, y), ncol=2)
}

GBV2 = GroupByVertex02(Groups)
plot(g2, vertex.color=rainbow(3)[Groups], layout=GBV2)

版面2

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM