R igraph部分填充顶点

时间:2012-07-23 10:36:35

标签: r plot shape vertex igraph

给定一个分数向量(在域[0:1]上),我想绘制刚刚部分填充的顶点。 即如果分数是1/2,相应的顶点应该是半填充的(半球形) 即如果分数是1/4,则相应的顶点仅在四分之一(四分之一球)中 等等...

library('igraph')
N <- 10
g <- graph.full(N)
values <- runif(N,0,1) # vector of fractions
V(g)$shape <-'circle'

plot.igraph(g,...)

例如: http://www.google.ch/imgres?q=three+quarter-filled+circle&um=1&hl=de&sa=N&biw=1024&bih=751&tbm=isch&tbnid=fCz7FZ6JG38DzM:&imgrefurl=http://www.clipartstation.com/clipart_indexer4/index/search%3Fkeywords%3DART&docid=UPphGFugM1pYGM&imgurl=http://www.clipartstation.com/clipart/resized/Math/Transformations/__100x100//three%252520quarters%252520blue%252520circle.gif&w=100&h=99&ei=ETsNUNDeHbCL4gTT5rjACg&zoom=1&iact=rc&dur=331&sig=101088608959992434501&page=1&tbnh=79&tbnw=80&start=0&ndsp=24&ved=1t:429,r:8,s:0,i:97&tx=49&ty=38

1 个答案:

答案 0 :(得分:3)

如果您拥有igraph软件包版本0.6,则应该能够使用plot()中的pie顶点,在这种情况下,您的代码将是:

library(igraph)
N <- 10
g <- graph.full(N)

values <- runif(N,0,1) # vector of fractions
plot(g, vertex.shape="pie", vertex.pie=values, vertex.frame.color="white", 
     vertex.pie.color=list(heat.colors(5)))

如果你没有这个(我没有),你可以找到你可以运行的代码here,然后使用pie作为顶点。