1
我的數據幀被稱爲示出數據幀
p
Impacted_system, Application_Caused_Incident Number_of_Incident
Web Financials 10
PeopleSoft HR 30
PPP PeopleSoft 50
等
我喜歡示出具有邊緣的igraph圖來受到影響的系統,邊緣具有在顯示文本影響系統和事件數量。
我這樣做:
g <- graph.data.frame(p)
plot.igraph(g)
我得到的圖形與具有數字邊緣。我非常喜歡看HR,Web等文字和邊緣事件的數量等等。
我會在這裏這個資源開始,重點print.edge.attributes:http://igraph.sourceforge.net/doc/R/igraph.par.html – tcash21
@ tcash21,我做了這樣的g < - graph.data.frame(p)和plot(g,layout = layout.fruchterman.reingold,vertex.label = V(g)$ name),它看起來像是在正確的方向。我想在箭頭上顯示number_of_incidents。任何想法,我會如何做到這一點。這真的很酷。 – user1471980
我懂了,它的邊緣。標籤 – user1471980