R igraph 手册页

如果您从 R 中使用 igraph,请使用此选项

c.igraph.es {igraph}R 文档

连接边序列

描述

连接边序列

用法

## S3 method for class 'igraph.es'
c(..., recursive = FALSE)

参数

...

要连接的边序列。它们必须都指向同一个图。

recursive

忽略,为了与基础 c 函数的 S3 兼容性而包含。

一个边序列,输入序列已连接。

参见

其他顶点和边序列操作:c.igraph.vs(), difference.igraph.es(), difference.igraph.vs(), igraph-es-indexing2, igraph-es-indexing, igraph-vs-indexing2, igraph-vs-indexing, intersection.igraph.es(), intersection.igraph.vs(), rev.igraph.es(), rev.igraph.vs(), union.igraph.es(), union.igraph.vs(), unique.igraph.es(), unique.igraph.vs()

示例

g <- make_(ring(10), with_vertex_(name = LETTERS[1:10]))
c(E(g)[1], E(g)['A|B'], E(g)[1:4])

[包 igraph 版本 1.3.5 索引]