さて、ハックがあります。異なるエッジ幅の数だけグラフをプロットし、毎回「右」の矢印サイズでエッジの特定のサブセットのみをプロットする必要があります。引数を使用して、add=TRUE
それらを重ねてプロットします。頂点を一度だけプロットしたい場合もあります。
ところで。これについては、 https://github.com/igraph/igraph/issuesで機能リクエストを送信できます。
編集:ここに例があります:
library(igraph)
## (almost) your example data
d <- data.frame(start=c("a","a","b","c"),
end=c("b","b","c","b"),
size=1:4)
graph <- graph.data.frame(d, directed=TRUE)
## The plotting function
eqarrowPlot <- function(graph, layout, edge.lty=rep(1, ecount(graph)),
edge.arrow.size=rep(1, ecount(graph)),
vertex.shape="circle",
edge.curved=autocurve.edges(graph), ...) {
plot(graph, edge.lty=0, edge.arrow.size=0, layout=layout,
vertex.shape="none")
for (e in seq_len(ecount(graph))) {
graph2 <- delete.edges(graph, E(graph)[(1:ecount(graph))[-e]])
plot(graph2, edge.lty=edge.lty[e], edge.arrow.size=edge.arrow.size[e],
edge.curved=edge.curved[e], layout=layout, vertex.shape="none",
vertex.label=NA, add=TRUE, ...)
}
plot(graph, edge.lty=0, edge.arrow.size=0, layout=layout,
vertex.shape=vertex.shape, add=TRUE, ...)
invisible(NULL)
}
## Test
eqarrowPlot(graph, layout.auto(graph), edge.arrow.size=E(graph)$size/3,
edge.width=E(graph)$size)
ただし、エッジが非常に広いと見栄えが悪くなります。