graphscope.nx.classes.function.degree_histogram¶
- graphscope.nx.classes.function.degree_histogram(G)[source]¶
- Returns a list of the frequency of each degree value. - Parameters:
- G (Networkx graph) – A graph 
- Returns:
- hist – A list of frequencies of degrees. The degree values are the index in the list. 
- Return type:
- list 
 - Notes - Note: the bins are width one, hence len(list) can be large (Order(number_of_edges))