Warning

This documents an unmaintained version of NetworkX. Please upgrade to a maintained version and see the current NetworkX documentation.

networkx.classes.function.subgraph

subgraph(G, nbunch)[source]

Return the subgraph induced on nodes in nbunch.

Parameters:
  • G (graph) – A NetworkX graph
  • nbunch (list, iterable) – A container of nodes that will be iterated through once (thus it should be an iterator or be iterable). Each element of the container should be a valid node type: any hashable type except None. If nbunch is None, return all edges data in the graph. Nodes in nbunch that are not in the graph will be (quietly) ignored.

Notes

subgraph(G) calls G.subgraph()