使用networkx.degree_histogram和matplotlib绘制networkx.DiGraph的度数分布

时间:2018-12-28 12:33:11

标签: python matplotlib histogram networkx directed-graph

我尝试使用以下代码来绘制networkx.DiGraph G的度分布:

def plot_degree_In(G):
    in_degrees = G.in_degree()
    in_degrees=dict(in_degrees)
    in_values = sorted(set(in_degrees.values()))
    in_hist = [list(in_degrees.values()).count(x) for x in in_values]

    plt.figure() 
    plt.grid(False)
    plt.loglog(in_values, in_hist, 'r.') 
    #plt.loglog(out_values, out_hist, 'b.') 
    #plt.legend(['In-degree', 'Out-degree'])
    plt.xlabel('k')
    plt.ylabel('p(k)')
    plt.title('Degree Distribution')
    plt.xlim([0, 2*100**1])

但是后来我意识到这不是正确的方法,所以我将其更改为:

def plot_degree_dist(G):
    degree_hist = nx.degree_histogram(G) 
    degree_hist = np.array(degree_hist, dtype=float)
    degree_prob = degree_hist/G.number_of_nodes()
    plt.loglog(np.arange(degree_prob.shape[0]),degree_prob,'b.')
    plt.xlabel('k')
    plt.ylabel('p(k)')
    plt.title('Degree Distribution')
    plt.show()

但这给了我一个没有数据的空图。

3 个答案:

答案 0 :(得分:2)

今天遇到了同样的问题。一些典型的度数分布图(examples)不对度数进行分类。取而代之的是,它们在对数对数图中对每个度数进行分散

这就是我想出的。由于似乎很难关闭常见直方图功能中的合并,因此我决定选择标准的Counter来完成这项工作。

degrees可能在节点度上是可迭代的(由networkx返回)。

Counter.items()给出了对[(度,计数)]对的列表。将列表解压缩到x和y之后,我们可以准备具有对数刻度的轴,并发布散点图。

from collections import Counter
from operator import itemgetter
import matplotlib.pyplot as plt

# G = some networkx graph

degrees = G.in_degree()
degree_counts = Counter(degrees)                                                                                                 
x, y = zip(*degree_counts.items())                                                      

plt.figure(1)   

# prep axes                                                                                                                      
plt.xlabel('degree')                                                                                                             
plt.xscale('log')                                                                                                                
plt.xlim(1, max(x))  

plt.ylabel('frequency')                                                                                                          
plt.yscale('log')                                                                                                                
plt.ylim(1, max(y))                                                                                                             
                                                                                                                                     # do plot                                                                                                                        
plt.scatter(x, y, marker='.')                                                                                                    
plt.show()

我手动裁剪了xlimylim,因为自动缩放会导致点数在对数刻度中丢失。小点标记效果最好。

希望有帮助

编辑:该帖子的早期版本包括对度数对进行排序,这当然对于具有明确定义的x和y的散点图而言不是必需的。

See example image here

答案 1 :(得分:1)

我们可以使用nx.degree_histogram,它返回网络中度数的频率列表,其中度值是列表中的相应索引。但是,此功能仅适用于无向图。我将首先说明在无向图的情况下如何使用它,然后展示一个有向图的示例,前提是我们可以看到如何通过稍微修改nx.degree_histogram来获得度分布。

  • 用于无向图

对于有向图,我们可以使用nx.degree_histogram。贝娄是使用随机图生成器nx.barabasi_albert_graph的示例。

通常在绘制度数分布时会同时使用xy轴的对数,这有助于查看networkx是否为scale-free(度数服从幂的网络法律),因此我们可以使用matplotlib的plt.loglog

m=3
G = nx.barabasi_albert_graph(1000, m)

degree_freq = nx.degree_histogram(G)
degrees = range(len(degree_freq))
plt.figure(figsize=(12, 8)) 
plt.loglog(degrees[m:], degree_freq[m:],'go-') 
plt.xlabel('Degree')
plt.ylabel('Frequency')

enter image description here


  • 对于有向图

对于有向图,我们可以对函数nx.degree_histogram进行一些修改,以考虑进出度:

def degree_histogram_directed(G, in_degree=False, out_degree=False):
    """Return a list of the frequency of each degree value.

    Parameters
    ----------
    G : Networkx graph
       A graph
    in_degree : bool
    out_degree : bool

    Returns
    -------
    hist : list
       A list of frequencies of degrees.
       The degree values are the index in the list.

    Notes
    -----
    Note: the bins are width one, hence len(list) can be large
    (Order(number_of_edges))
    """
    nodes = G.nodes()
    if in_degree:
        in_degree = dict(G.in_degree())
        degseq=[in_degree.get(k,0) for k in nodes]
    elif out_degree:
        out_degree = dict(G.out_degree())
        degseq=[out_degree.get(k,0) for k in nodes]
    else:
        degseq=[v for k, v in G.degree()]
    dmax=max(degseq)+1
    freq= [ 0 for d in range(dmax) ]
    for d in degseq:
        freq[d] += 1
    return freq

与上述类似,我们可以为入度或/和出度生成图。这是一个带有随机标度-gree图的示例:

G = nx.scale_free_graph(5000)

in_degree_freq = degree_histogram_directed(G, in_degree=True)
out_degree_freq = degree_histogram_directed(G, out_degree=True)
degrees = range(len(in_degree_freq))
plt.figure(figsize=(12, 8)) 
plt.loglog(range(len(in_degree_freq)), in_degree_freq, 'go-', label='in-degree') 
plt.loglog(range(len(out_degree_freq)), out_degree_freq, 'bo-', label='out-degree')
plt.xlabel('Degree')
plt.ylabel('Frequency')

enter image description here

答案 2 :(得分:0)

一种使用测试代码打印(进-出)度直方图的方法:

import matplotlib.pyplot as plt
import networkx as nx

def plot_degree_dist(G):
    degrees = [G.degree(n) for n in G.nodes()]
    plt.hist(degrees)
    plt.show()

plot_degree_dist(nx.gnp_random_graph(100, 0.5, directed=True))

可以通过向plt.hist添加第二个参数来调整直方图的bin数。