我有一个图形对象,但是当使用 ggraph() 使用布局'sparse_stress'(也尝试过其他布局)进行绘制时,它会出现以下错误。
min(degree) 为 1。没有断开的节点。“仅支持连接图”的错误是什么意思?
Subgraph_1994 = asIgraph(Subgraph_1994)
#sparse-stress gives error
ggraph(Subgraph_1994_Rev,layout="sparse_stress") + geom_edge_link() + geom_node_point() + theme_graph()
#also tried below but same error
ggraph(Subgraph_1994) + geom_edge_link() + geom_node_point() + theme_graph()
错误信息
Error in layout_with_sparse_stress(graph, pivots = pivots, weights = weights, : only connected graphs are supported.