如果您从 R 中使用 igraph,请使用此选项
| c.igraph.vs {igraph} | R 文档 |
连接顶点序列
## S3 method for class 'igraph.vs'
c(..., recursive = FALSE)
... |
要连接的顶点序列。它们必须引用同一个图。 |
recursive |
已忽略,为了与基础 |
一个顶点序列,即连接后的输入序列。
其他顶点和边序列操作: 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])