如果您从 R 中使用 igraph,请使用此选项
graph_ {igraph} | R 文档 |
这是一个通用函数,用于将 R 对象转换为 igraph 图。
graph_(...)
... |
参数,见下方详情。 |
待办事项
## These are equivalent
graph_(cbind(1:5,2:6), from_edgelist(directed = FALSE))
graph_(cbind(1:5,2:6), from_edgelist(), directed = FALSE)