R igraph 手册页

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

c.igraph.vs {igraph}R 文档

连接顶点序列

描述

连接顶点序列

用法

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

参数

...

要连接的顶点序列。它们必须引用同一个图。

recursive

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

一个顶点序列,即连接后的输入序列。

参见

其他顶点和边序列操作: c.igraph.es(), 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(V(g)[1], V(g)['A'], V(g)[1:4])

[包 igraph 版本 1.3.5 索引]