Skip to content

Commit

Permalink
[Doc] docstring for node/edge removal APIs (dmlc#639)
Browse files Browse the repository at this point in the history
  • Loading branch information
yzh119 authored and jermainewang committed Jun 10, 2019
1 parent fb9dcc5 commit d6a9265
Showing 1 changed file with 80 additions and 1 deletion.
81 changes: 80 additions & 1 deletion python/dgl/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -1114,12 +1114,53 @@ def add_edges(self, u, v, data=None):
self._msg_frame.add_rows(num)

def remove_nodes(self, vids):
"""Remove multiple nodes.
"""Remove multiple nodes, edges that have connection with these nodes would also be removed.
Parameters
----------
vids: list, tensor
The id of nodes to remove.
Notes
-----
The nodes and edges in the graph would be re-indexed after the removal.
Examples
--------
The following example uses PyTorch backend.
>>> import torch as th
>>> G = dgl.DGLGraph()
>>> G.add_nodes(5, {'x': th.arange(5) * 2})
>>> G.add_edges([0, 1, 2, 3, 4], [1, 2, 3, 4, 0], {'x': th.arange(15).view(5, 3)})
>>> G.nodes()
tensor([0, 1, 2, 3, 4])
>>> G.edges()
(tensor([0, 1, 2, 3, 4]), tensor([1, 2, 3, 4, 0]))
>>> G.ndata['x']
tensor([0, 2, 4, 6, 8])
>>> G.edata['x']
tensor([[ 0, 1, 2],
[ 3, 4, 5],
[ 6, 7, 8],
[ 9, 10, 11],
[12, 13, 14]])
>>> G.remove_nodes([2, 3])
>>> G.nodes()
tensor([0, 1, 2]
>>> G.edges()
(tensor([0, 2]), tensor([1, 0]))
>>> G.ndata['x']
tensor([0, 2, 8])
>>> G.edata['x']
tensor([[ 0, 1, 2],
[12, 13, 14]])
See Also
--------
add_nodes
add_edges
remove_edges
"""
if self.is_readonly:
raise DGLError("remove_nodes is not supported by read-only graph.")
Expand All @@ -1145,6 +1186,44 @@ def remove_edges(self, eids):
----------
eids: list, tensor
The id of edges to remove.
Notes
-----
The nodes and edges in the graph would be re-indexed after the removal.
Examples
--------
The following example uses PyTorch backend.
>>> import torch as th
>>> G = dgl.DGLGraph()
>>> G.add_nodes(5)
>>> G.add_edges([0, 1, 2, 3, 4], [1, 2, 3, 4, 0], {'x': th.arange(15).view(5, 3)})
>>> G.nodes()
tensor([0, 1, 2, 3, 4])
>>> G.edges()
(tensor([0, 1, 2, 3, 4]), tensor([1, 2, 3, 4, 0]))
>>> G.edata['x']
tensor([[ 0, 1, 2],
[ 3, 4, 5],
[ 6, 7, 8],
[ 9, 10, 11],
[12, 13, 14]])
>>> G.remove_edges([1, 2])
>>> G.nodes()
tensor([0, 1, 2, 3, 4])
>>> G.edges()
(tensor([0, 3, 4]), tensor([1, 4, 0]))
>>> G.edata['x']
tensor([[ 0, 1, 2],
[ 9, 10, 11],
[12, 13, 14]])
See Also
--------
add_nodes
add_edges
remove_nodes
"""
if self.is_readonly:
raise DGLError("remove_edges is not supported by read-only graph.")
Expand Down

0 comments on commit d6a9265

Please sign in to comment.