Commit d6a9265d authored by Zihao Ye's avatar Zihao Ye Committed by Minjie Wang
Browse files

[Doc] docstring for node/edge removal APIs (#639)

parent fb9dcc51
...@@ -1114,12 +1114,53 @@ class DGLGraph(DGLBaseGraph): ...@@ -1114,12 +1114,53 @@ class DGLGraph(DGLBaseGraph):
self._msg_frame.add_rows(num) self._msg_frame.add_rows(num)
def remove_nodes(self, vids): def remove_nodes(self, vids):
"""Remove multiple nodes. """Remove multiple nodes, edges that have connection with these nodes would also be removed.
Parameters Parameters
---------- ----------
vids: list, tensor vids: list, tensor
The id of nodes to remove. 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: if self.is_readonly:
raise DGLError("remove_nodes is not supported by read-only graph.") raise DGLError("remove_nodes is not supported by read-only graph.")
...@@ -1145,6 +1186,44 @@ class DGLGraph(DGLBaseGraph): ...@@ -1145,6 +1186,44 @@ class DGLGraph(DGLBaseGraph):
---------- ----------
eids: list, tensor eids: list, tensor
The id of edges to remove. 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: if self.is_readonly:
raise DGLError("remove_edges is not supported by read-only graph.") raise DGLError("remove_edges is not supported by read-only graph.")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment