grinpy.functions.degree.closed_neighborhood_degree_list

grinpy.functions.degree.closed_neighborhood_degree_list(G, nbunch)

Return a list of the unique degrees of all nodes in the closed neighborhood of the nodes in nbunch.

Parameters:
  • G (NetworkX graph) – An undirected graph.
  • nbunch – A single node or iterable container of nodes.
Returns:

A list of the degrees of all nodes in the closed neighborhood of the nodes in nbunch.

Return type:

list

See also

closed_neighborhood(), neighborhood_degree_list()

Examples

>>> import grinpy as gp
>>> G = gp.path_graph(3) # Path on 3 nodes
>>> gp.closed_neighborhood_degree_list(G, 1)
[1, 2, 2]