您的图表已连接。
这是您描述的网络图的一部分(使用 mtx 作为矩阵对象)。
dput(mtx)
structure(list(E = c(0.5564821, 0.3373116, 0.3973278, 0.6066518,
0.9603731, 0.3612895), V1 = c(1L, 1L, 1L, 1L, 1L, 1L), V2 = 2:7), .Names = c("E",
"V1", "V2"), class = "data.frame", row.names = c("[1,]", "[2,]",
"[3,]", "[4,]", "[5,]", "[6,]"))
然后使用igraph
包来绘制图形:
library(igraph)
onagraph <- graph.data.frame(mtx, directed=F)
set.seed(19)
plot(onagraph)
根据 Benjamin、Chartrand 和 Zhang在 The Fascinating World of Graph中的说法,“连通图”是“可以沿着 [图] 的边缘从 [图] 的任何顶点走到 [图] 的任何其他顶点”的图。理论(普林斯顿大学出版社,2015 年),第 46 页。