Есть ли способ создать ориентированную диаграмму visNetwork, в которой метки ребер не перекрываются?(e5 и e4 перекрываются на графике ниже)
library(visNetwork)
nodes = data.frame(id = c(0, 1, 2, 3, 4),
X = c("x0", "x1", "x2", "x3", "x4"),
label = c("x0", "x1", "x2", "x3", "x4"),
shape = "circle")
edges = data.frame(from = c(0, 0, 1, 1, 2, 2),
to = c(1, 2, 3, 4, 3, 4),
arrows = "to",
label = c("e1", "e2", "e3", "e4", "e5", "e6"))
graph = visNetwork(nodes, edges)
visHierarchicalLayout(graph,
levelSeparation = 150,
sortMethod = "directed",
direction = "LR")