igraph (version 1.0.0)

delete_vertices: Delete vertices from a graph

Description

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.

See Also

Other functions for manipulating graph structure: +.igraph; -.igraph, igraph-minus; add.edges, add_edges; add.vertices, add_vertices; delete.edges, delete_edges; edge, edges; path; vertex, vertices

Examples

Run this code
g <- make_ring(10) %>%
  set_vertex_attr("name", value = LETTERS[1:10])
g
V(g)

g2 <- delete_vertices(g, c(1,5)) %>%
  delete_vertices("B")
g2
V(g2)

Run the code above in your browser using DataCamp Workspace