我正在尝试找到一种方法来突出显示图表上的一些最短路径。我正在尝试将 get.shortest.paths 的输出自动用于 E() 的 path= 函数,但数据结构似乎错误。见下文:
###################################################################
g <- graph.ring(10,directed=TRUE)
plot(g)
ShortPth <- get.shortest.paths(g, 8, 2) # List of path 8->2
ShortPth
E(g)$color <- "SkyBlue2"
E(g)$width <- 1
E(g, path=ShortPth)$color <- "red"
### setting edges by path= is failing !!!!!!!!!!
plot(g)
################################################# ###########
任何帮助将不胜感激....