How to color vertices according to specific value in a clustered network?

43 Views Asked by At

The code for getting the following network is shown here

MyEdges <- read.table(header=TRUE,sep=",",text="
from,to
A,B
C,A
C,B
D,A
E,F
F,G
G,A
G,E
")
MyNodes <- read.table(header=TRUE,sep=",",text="
name,group
A,1
B,1
C,2
D,2
E,3
F,3
G,4
")

MyNetwork <- graph.data.frame(d=MyEdges,vertices=MyNodes,directed=TRUE)

# Make a palette of colors
library(RColorBrewer)
coul  <- brewer.pal(9, "Set1") 
# Create a vector of color
my_color <- coul[as.numeric(as.factor(V(MyNetwork)$group))]

set.seed(1234)
plot(MyNetwork,
     layout = layout.graphopt,
     vertex.color = my_color,
)

# Add a legend
legend("bottomleft", 
       legend=levels(as.factor(V(MyNetwork)$group)), 
       col = coul , 
       bty = "n", 
       pch= 20 , 
       pt.cex = 3, 
       cex = 1.5, 
       text.col=coul , 
       horiz = FALSE, 
       inset = c(0.1, 0.1)
)

which works very nice.

Network1a


But as soon as I do a clustered network analysis and I want to show groups the color of the nodes/vertices are not shown properly.


# Plotting data
MyNetwork_cluster <- cluster_optimal(MyNetwork) #* Loading the data 
set.seed(1234)
plot(MyNetwork_cluster,   #* clustered network data
     MyNetwork,
     layout = layout.graphopt,       # better layout options
     vertex.color = my_color, # ?????????????????????????????
)


# Add a legend
legend("bottomleft", 
       legend=levels(as.factor(V(MyNetwork)$group)), 
       col = coul , 
       bty = "n", 
       pch= 20 , 
       pt.cex = 3, 
       cex = 1.5, 
       text.col=coul , 
       horiz = FALSE, 
       inset = c(0.1, 0.1)
)

Network1

My question is "How can I keep the color-model of the vertices for the cluster network?"

1

There are 1 best solutions below

0
On BEST ANSWER

The option for the color of vertices is called col then:

# Plotting data
MyNetwork_cluster <- cluster_optimal(MyNetwork) #* Loading the data 
set.seed(1234)
plot(MyNetwork_cluster,   #* clustered network data
     MyNetwork,
     layout = layout.graphopt,       # better layout options
     col = my_color, # !!!!!!!!!!!!!!!!
)


# Add a legend
legend("bottomleft", 
       legend=levels(as.factor(V(MyNetwork)$group)), 
       col = coul , 
       bty = "n", 
       pch= 20 , 
       pt.cex = 3, 
       cex = 1.5, 
       text.col=coul , 
       horiz = FALSE, 
       inset = c(0.1, 0.1)
)

enter image description here