nx_arangodb.Graph.remove_node
- Graph.remove_node(n)[source]
Remove node n.
Removes the node n and all adjacent edges. Attempting to remove a nonexistent node will raise an exception.
Parameters
- nnode
A node in the graph
Raises
- NetworkXError
If n is not in the graph.
See Also
remove_nodes_from
Examples
>>> G = nx.path_graph(3) # or DiGraph, MultiGraph, MultiDiGraph, etc >>> list(G.edges) [(0, 1), (1, 2)] >>> G.remove_node(1) >>> list(G.edges) []