#

Note

This documents the development version of NetworkX. Documentation for the current release can be found here.

#

networkx.classes.function.create_empty_copy

create_empty_copy(G, with_data=True)[source]

Returns a copy of the graph G with all of the edges removed.

Parameters
  • G (graph) – A NetworkX graph

  • with_data (bool (default=True)) – Propagate Graph and Nodes data to the new graph.

See also

empty_graph()