Note
Click here to download the full example code
Expected Degree Sequence¶
Random graph from given degree sequence.
Out:
Degree histogram
degree (#nodes) ****
0 ( 0)
1 ( 0)
2 ( 0)
3 ( 0)
4 ( 0)
5 ( 0)
6 ( 0)
7 ( 0)
8 ( 0)
9 ( 0)
10 ( 0)
11 ( 0)
12 ( 0)
13 ( 0)
14 ( 0)
15 ( 0)
16 ( 0)
17 ( 0)
18 ( 0)
19 ( 0)
20 ( 0)
21 ( 0)
22 ( 0)
23 ( 0)
24 ( 0)
25 ( 0)
26 ( 0)
27 ( 0)
28 ( 0)
29 ( 0)
30 ( 0)
31 ( 0)
32 ( 0)
33 ( 1) *
34 ( 1) *
35 ( 1) *
36 ( 3) ***
37 ( 3) ***
38 ( 4) ****
39 ( 4) ****
40 ( 8) ********
41 ( 8) ********
42 ( 9) *********
43 (22) **********************
44 (27) ***************************
45 (18) ******************
46 (28) ****************************
47 (33) *********************************
48 (29) *****************************
49 (30) ******************************
50 (27) ***************************
51 (28) ****************************
52 (31) *******************************
53 (20) ********************
54 (25) *************************
55 (23) ***********************
56 (24) ************************
57 (17) *****************
58 (22) **********************
59 (12) ************
60 ( 8) ********
61 ( 9) *********
62 ( 7) *******
63 ( 7) *******
64 ( 4) ****
65 ( 2) **
66 ( 0)
67 ( 0)
68 ( 2) **
69 ( 0)
70 ( 1) *
71 ( 0)
72 ( 1) *
73 ( 0)
74 ( 1) *
import networkx as nx
# make a random graph of 500 nodes with expected degrees of 50
n = 500 # n nodes
p = 0.1
w = [p * n for i in range(n)] # w = p*n for all nodes
G = nx.expected_degree_graph(w) # configuration model
print("Degree histogram")
print("degree (#nodes) ****")
dh = nx.degree_histogram(G)
for i, d in enumerate(dh):
print(f"{i:2} ({d:2}) {'*'*d}")
Total running time of the script: ( 0 minutes 0.045 seconds)