Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 igraph/RI 想创建一个显示路径长度直方图的图表。我可以通过 -command 获取直方图值path.length.hist,但不知道如何绘制结果。如果有人可以帮助我找到正确的代码,那就太好了。
path.length.hist
这些是值:
$res [1] 7058 83638 124106 97151 43111 4630 354 7 $unconnected [1] 32447
不确定这是否是您想要实现的目标,但您可以尝试类似的方法:
tab <- as.table(path.length.hist(g)$res) names(tab) <- 1:length(tab) barplot(tab)