R igraph 手册页

如果您从 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)

[包 igraph 版本 1.3.5 索引]