1
df
network bus_unit outage
A Online 4
B Internal 5
A Finance 6
B IT 5
A IT 6
A Marketing 40
我需要馬麗娟一個IGRAPH我可以像這樣做:重新排列中的igraph頂點
g <- graph.data.frame(df)
plot(g,
layout = layout.fruchterman.reingold,
vertex.label = V(g) $name,
vertex.label.color= "black",
edge.arrow.size=1,
edge.curved=FALSE,
edge.label=df$outage)
我的問題是,我喜歡展示該網絡的自ontop的曲線圖它是罪魁禍首。無論如何組織這個igraph,移動頂點的周圍等。
感謝您的幫助。
http://lists.gnu.org/archive/html/igraph-help/2012-10/msg00030.html –