【发布时间】:2017-05-18 08:07:08
【问题描述】:
我想为当前顶点添加第二个内部圆。它应该与某个变量成正比。
我已经知道怎么做主圆,也就是顶点大小。
variable1 <- c(20,40,60) # this will define the size of the vertices
g1 <- graph(edges=c(1,2, 2,3, 3,1), n=3, directed=F)
V(g1)$size <- variable1 # this assigns the vertices size to the igraph object 'g1'
plot(g1)
variable2 <- c(10,20,30) # this would be needed for a second, internal circle, ideally in a different color
有什么想法吗?
【问题讨论】: