Skip to contents

Delete vertices from a graph

Usage

delete_vertices(graph, v)

Arguments

graph

The input graph.

v

The vertices to remove, a vertex sequence.

Value

The graph, with the vertices removed.

Examples

g <- make_ring(10) %>%
  set_vertex_attr("name", value = LETTERS[1:10])
g
#> IGRAPH bd231df UN-- 10 10 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l), name (v/c)
#> + edges from bd231df (vertex names):
#>  [1] A--B B--C C--D D--E E--F F--G G--H H--I I--J A--J
V(g)
#> + 10/10 vertices, named, from bd231df:
#>  [1] A B C D E F G H I J

g2 <- delete_vertices(g, c(1, 5)) %>%
  delete_vertices("B")
g2
#> IGRAPH dc11eb4 UN-- 7 5 -- Ring graph
#> + attr: name (g/c), mutual (g/l), circular (g/l), name (v/c)
#> + edges from dc11eb4 (vertex names):
#> [1] C--D F--G G--H H--I I--J
V(g2)
#> + 7/7 vertices, named, from dc11eb4:
#> [1] C D F G H I J