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.
这是我的大图示例:
我想删除节点“B”而不影响其他节点的交互:
我与“R”、“PgRouting”、“gephi”和“networkx”一起工作。而且我没有找到一种有效的方法来做到这一点。有什么建议吗?
使用 R 和igraph包:
igraph
library(igraph) g <- make_graph(~ B -- A:C:D, A-E, C-F, D-G) plot(g)
node <- "B" g_2 <- g %>% union(connect(make_ego_graph(g, 1, node)[[1]], 2)) %>% delete_vertices(node) plot(g_2)