NetworKit User Guide

About NetworKit

NetworKit is an open-source toolkit for high-performance network analysis. Its aim is to provide tools for the analysis of large networks in the size range from thousands to billions of edges. For this purpose, it implements efficient graph algorithms, many of them parallel to utilize multicore architectures. These are meant to compute standard measures of network analysis, such as degree sequences, clustering coefficients and centrality. In this respect, NetworKit is comparable to packages such as NetworkX, albeit with a focus on parallelism and scalability. NetworKit is also a testbed for algorithm engineering and contains a few novel algorithms from recently published research, especially in the area of community detection.

Introduction

This notebook provides an interactive introduction to the features of NetworKit, consisting of text and executable code. We assume that you have read the Readme and successfully built the core library and the Python module. Code cells can be run one by one (e.g. by selecting the cell and pressing shift+enter), or all at once (via the Cell->Run All command). Try running all cells now to verify that NetworKit has been properly built and installed.

Preparation

This notebook creates some plots. To show them in the notebook, matplotlib must be imported and we need to activate matplotlib's inline mode:


In [1]:
%matplotlib inline
import matplotlib.pyplot as plt

IPython lets us use familiar shell commands in a Python interpreter. Use one of them now to change into the directory of your NetworKit download:


In [2]:
cd ../../


/home/mv/workspace/hiwi/NetworKit

NetworKit is a hybrid built from C++ and Python code: Its core functionality is implemented in C++ for performance reasons, and then wrapped for Python using the Cython toolchain. This allows us to expose high-performance parallel code as a normal Python module. On the surface, NetworKit is just that and can be imported accordingly:


In [3]:
from networkit import *


/usr/lib/python3.5/site-packages/pytz/__init__.py:29: UserWarning: Module _NetworKit was already imported from None, but /home/mv/workspace/hiwi/NetworKit is being added to sys.path
  from pkg_resources import resource_stream
/usr/lib/python3.5/site-packages/matplotlib/__init__.py:872: UserWarning: axes.color_cycle is deprecated and replaced with axes.prop_cycle; please use the latter.
  warnings.warn(self.msg_depr % (key, alt_key))

Reading and Writing Graphs

Let us start by reading a network from a file on disk: PGPgiantcompo.graph. In the course of this tutorial, we are going to work on the PGPgiantcompo network, a social network/web of trust in which nodes are PGP keys and an edge represents a signature from one key on another. It is distributed with NetworKit as a good starting point.

There is a convenient function in the top namespace which tries to guess the input format and select the appropriate reader:


In [4]:
G = readGraph("input/PGPgiantcompo.graph", Format.METIS)

There is a large variety of formats for storing graph data in files. For NetworKit, the currently best supported format is the METIS adjacency format. Various example graphs in this format can be found here. The readGraph function tries to be an intelligent wrapper for various reader classes. In this example, it uses the METISGraphReader which is located in the graphio submodule, alongside other readers. These classes can also be used explicitly:


In [5]:
graphio.METISGraphReader().read("input/PGPgiantcompo.graph")
# is the same as: readGraph("input/PGPgiantcompo.graph", Format.METIS)


Out[5]:
<_NetworKit.Graph at 0x7f84d7b5b1b0>

It is also possible to specify the format for readGraph() and writeGraph(). Supported formats can be found via [graphio.]Format. However, graph formats are most likely only supported as far as the NetworKit::Graph can hold and use the data. Please note, that not all graph formats are supported for reading and writing.

Thus, it is possible to use NetworKit to convert graphs between formats. Let's say I need the previously read PGP graph in the Graphviz format:


In [6]:
graphio.writeGraph(G,"output/PGPgiantcompo.graphviz", Format.GraphViz)

NetworKit also provides a function to convert graphs directly:


In [7]:
graphio.convertGraph(Format.LFR, Format.GML, "input/example.edgelist", "output/example.gml")


converted input/example.edgelist to output/example.gml

The Graph Object

Graph is the central class of NetworKit. An object of this type represents an undirected, optionally weighted network. Let us inspect several of the methods which the class provides.


In [8]:
n = G.numberOfNodes()
m = G.numberOfEdges()
print(n, m)


10680 24316

In [9]:
G.toString()


Out[9]:
b'Graph(name=PGPgiantcompo, n=10680, m=24316)'

Nodes are simply integer indices, and edges are pairs of such indices.


In [10]:
V = G.nodes()
print(V[:10])
E = G.edges()
print(E[:10])


[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
[(42, 11), (101, 28), (111, 92), (128, 87), (141, 0), (165, 125), (169, 111), (176, 143), (187, 38), (192, 105)]

In [11]:
G.hasEdge(42,11)


Out[11]:
True

This network is unweighted, meaning that each edge has the default weight of 1.


In [12]:
G.weight(42,11)


Out[12]:
1.0

Drawing Graphs

Sometimes it be may interesting to take a glance at a visualization of a graph. As this is not the scope of NetworKit, the viztasks-module provides two convenience functions to draw graphs via NetworkX. If you have it installed, you will see usage examples throughout this guide.

It also possible to load a graph and the results of our analytic kernels directly into Gephi, a software package for interactive graph visualization, via its streaming plugin. You may want to take a look at the GephiStreaming notebook.

Profiling a network

The profiling-module introduced with version 4.0 of NetworKit is the successor of the properties-module. It provides a convenient way to run a selection of NetworKit's analytic kernels. The results are further processed to show all kinds of statistics. A very brief example follows. First, let's load a different graph:


In [13]:
astro = readGraph("input/astro-ph.graph", Format.METIS)

One simple function call is enough to run and evaluate several kernels. The preset-parameter is a convenient way to choose a set of algorithms. Currently, minimal, default and complete can be passed.


In [14]:
pf = profiling.Profile.create(astro, preset="minimal")

When running inside a notebook, the show-function can be used to display the profile. Depending on the selection of kernels, it may take a while to produce all the plots.


In [15]:
pf.show()


astro-ph
16706
121251
0.000868953
False
False
0
N/A
N/A
1029
Node centrality index which ranks nodes by their degree.
DegreeCentrality
Properties
$ n = $ 16706
$ f_{BC} = $ 1.00006
$ r = $ 0.308673
$ C = $ 0.0206995
Location
$ x_{(1)} = $ 0
$ x_{(n)} = $ 360
$ \widetilde{x}_{O_{min}} = $ 0
$ \widetilde{x}_{N_{min}} = $ 0
$ \widetilde{x}_{0.25} = $ 3
$ \widetilde{x}_{Med} = $ 6
$ \widetilde{x}_{0.75} = $ 18
$ \widetilde{x}_{N_{max}} = $ 40
$ \widetilde{x}_{O_{max}} = $ 63
$ \overline{x} = $ 14.5159
$ \overline{x}_{IQ} = $ 7.70589
$ \overline{x}_{R} = $ 180
$ \overline{x}_{H^{-1}} = $ nan
$ \overline{x}_{H^{2}} = $ 25.5356
$ \overline{x}_{H^{3}} = $ 39.3146
Dispersion
$ s^{2}_{x} = $ 441.382
$ s_{x} = $ 21.0091
$ v_{x} = $ 1.44732
$ R = $ 360
$ R_{IQ} = $ 15
Shape
$ S_{YP} = $ 1.21602
$ S_{M} = $ 4.15048
$ \gamma = $ 33.0525
Rank
$ s^{2}_{rk_{x}} = $ 2.31752e+07
$ s_{rk_{x}} = $ 4814.06
$ v_{rk_{x}} = $ 0.576293
Binning
$ k_{PDF} = $ 20
$ k_{CDF} = $ 130
$ x_{D_{PDF}} = $ 9
All nodes in a connected component are reachable from each other.
ConnectedComponents
Properties
$ n = $ 1029
$ f_{BC} = $ 1.00097
$ r = $ nan
$ C = $ nan
Location
$ x_{(1)} = $ 1
$ x_{(n)} = $ 14845
$ \widetilde{x}_{O_{min}} = $ 1
$ \widetilde{x}_{N_{min}} = $ 1
$ \widetilde{x}_{0.25} = $ 1
$ \widetilde{x}_{Med} = $ 1
$ \widetilde{x}_{0.75} = $ 2
$ \widetilde{x}_{N_{max}} = $ 3
$ \widetilde{x}_{O_{max}} = $ 5
$ \overline{x} = $ 16.2352
$ \overline{x}_{IQ} = $ 1.21748
$ \overline{x}_{R} = $ 7423
$ \overline{x}_{H^{-1}} = $ 1.2919
$ \overline{x}_{H^{2}} = $ 462.784
$ \overline{x}_{H^{3}} = $ 1470.42
Dispersion
$ s^{2}_{x} = $ 214114
$ s_{x} = $ 462.724
$ v_{x} = $ 28.5013
$ R = $ 14844
$ R_{IQ} = $ 1
Shape
$ S_{YP} = $ 0.0987749
$ S_{M} = $ 31.984
$ \gamma = $ 1021.98
Rank
$ s^{2}_{rk_{x}} = $ 64565
$ s_{rk_{x}} = $ 254.096
$ v_{rk_{x}} = $ 0.493391
Binning
$ k_{PDF} = $ 20
$ k_{CDF} = $ 2
$ x_{D_{PDF}} = $ 372.1

It is also possible to save the profile in a file with the following command. Two formats are available: HTML and LaTeX.


In [16]:
pf.output("HTML",".")

For a more customized selection of kernels, a Config-object can be created and passed to Profile.create. Take a look at the specific Profiling notebook for more detailed instructions.

Connected Components

A connected component is a set of nodes in which each pair of nodes is connected by a path. The following function determines the connected components of a graph:


In [17]:
cc = components.ConnectedComponents(G)
cc.run()
print("number of components ", cc.numberOfComponents())
v = 0
print("component of node ", v , ": " , cc.componentOfNode(0))
print("map of component sizes: ", cc.getComponentSizes())


number of components  1
component of node  0 :  0
map of component sizes:  {0: 10680}

Degree Distribution

Node degree, the number of edges connected to a node, is one of the most studied properties of networks. Types of networks are often characterized in terms of their distribution of node degrees. We obtain and visualize the degree distribution of our example network as follows.


In [18]:
dd = sorted(centrality.DegreeCentrality(G).run().scores(), reverse=True)
plt.xscale("log")
plt.xlabel("degree")
plt.yscale("log")
plt.ylabel("number of nodes")
plt.plot(dd)
plt.show()


We choose a logarithmic scale on both axes because a powerlaw degree distribution, a characteristic feature of complex networks, would show up as a straight line from the top left to the bottom right on such a plot. As we see, the degree distribution of the PGPgiantcompo network is definitely skewed, with few high-degree nodes and many low-degree nodes. But does the distribution actually obey a power law? In order to study this, we need to apply the powerlaw module. Call the following function:


In [19]:
import powerlaw
fit = powerlaw.Fit(dd)


Calculating best minimal value for power law fit

The powerlaw coefficient can then be retrieved via:


In [20]:
fit.alpha


Out[20]:
4.4185071392443591

If you further want to know how "good" it fits the power law distribution, you can use the the distribution_compare-function. From the documentation of the function:

R : float

Loglikelihood ratio of the two distributions' fit to the data. If greater than 0, the first distribution is preferred. If less than 0, the second distribution is preferred.

p : float

Significance of R


In [21]:
fit.distribution_compare('power_law','exponential')


Out[21]:
(10.90280164722239, 0.041197207672945678)

Transitivity / Clustering Coefficients

In the most general sense, transitivity measures quantify how likely it is that the relations out of which the network is built are transitive. The clustering coefficient is the most prominent of such measures. We need to distinguish between global and local clustering coefficient: The global clustering coefficient for a network gives the fraction of closed triads. The local clustering coefficient focuses on a single node and counts how many of the possible edges between neighbors of the node exist. The average of this value over all nodes is a good indicator for the degreee of transitivity and the presence of community structures in a network, and this is what the following function returns:


In [22]:
globals.clustering(G)


Out[22]:
0.44180491618170764

Search and Shortest Paths

A simple breadth-first search from a starting node can be performed as follows:


In [23]:
v = 0
bfs = graph.BFS(G, v)
bfs.run()

bfsdist = bfs.getDistances()

The return value is a list of distances from v to other nodes - indexed by node id. For example, we can now calculate the mean distance from the starting node to all other nodes:


In [24]:
sum(bfsdist) / len(bfsdist)


Out[24]:
11.339044943820225

Similarly, Dijkstra's algorithm yields shortest path distances from a starting node to all other nodes in a weighted graph. Because PGPgiantcompo is an unweighted graph, the result is the same here:


In [25]:
dijkstra = graph.Dijkstra(G, v)
dijkstra.run()
spdist = dijkstra.getDistances()
sum(spdist) / len(spdist)


Out[25]:
11.339044943820225

Core Decomposition

A $k$-core decomposition of a graph is performed by successicely peeling away nodes with degree less than $k$. The remaining nodes form the $k$-core of the graph.


In [26]:
K = readGraph("input/karate.graph",Format.METIS)
coreDec = centrality.CoreDecomposition(K)
coreDec.run()


Out[26]:
<_NetworKit.CoreDecomposition at 0x7f84d4785c50>

Core decomposition assigns a core number to each node, being the maximum $k$ for which a node is contained in the $k$-core. For this small graph, core numbers have the following range:


In [27]:
set(coreDec.scores())


Out[27]:
{1.0, 2.0, 3.0, 4.0}

In [28]:
viztasks.drawGraph(K, nodeSizes=[(k**2)*20 for k in coreDec.scores()])
plt.show()


Community Detection

This section demonstrates the community detection capabilities of NetworKit. Community detection is concerned with identifying groups of nodes which are significantly more densely connected to eachother than to the rest of the network.

Code for community detection is contained in the community module. The module provides a top-level function to quickly perform community detection with a suitable algorithm and print some stats about the result.


In [29]:
community.detectCommunities(G)


PLM(balanced,pc,turbo) detected communities in 0.25756025314331055 [s]
solution properties:
-------------------  ----------
# communities         93
min community size     6
max community size   682
avg. community size  114.839
modularity             0.881864
-------------------  ----------
Out[29]:
<_NetworKit.Partition at 0x7f84d560b8d0>

The function prints some statistics and returns the partition object representing the communities in the network as an assignment of node to community label. Let's capture this result of the last function call.


In [30]:
communities = community.detectCommunities(G)


PLM(balanced,pc,turbo) detected communities in 0.09407258033752441 [s]
solution properties:
-------------------  ----------
# communities         98
min community size     6
max community size   656
avg. community size  108.98
modularity             0.881609
-------------------  ----------

Modularity is the primary measure for the quality of a community detection solution. The value is in the range [-0.5,1] and usually depends both on the performance of the algorithm and the presence of distinctive community structures in the network.


In [31]:
community.Modularity().getQuality(communities, G)


Out[31]:
0.8816090951171207

The Partition Data Structure

The result of community detection is a partition of the node set into disjoint subsets. It is represented by the Partition data strucure, which provides several methods for inspecting and manipulating a partition of a set of elements (which need not be the nodes of a graph).


In [32]:
type(communities)


Out[32]:
_NetworKit.Partition

In [33]:
print("{0} elements assigned to {1} subsets".format(communities.numberOfElements(), communities.numberOfSubsets()))


10680 elements assigned to 98 subsets

In [34]:
print("the biggest subset has size {0}".format(max(communities.subsetSizes())))


the biggest subset has size 656

The contents of a partition object can be written to file in a simple format, in which each line i contains the subset id of node i.


In [35]:
community.writeCommunities(communities, "output/communties.partition")


wrote communities to: output/communties.partition

Choice of Algorithm

The community detection function used a good default choice for an algorithm: PLM, our parallel implementation of the well-known Louvain method. It yields a high-quality solution at reasonably fast running times. Let us now apply a variation of this algorithm.


In [36]:
community.detectCommunities(G, algo=community.PLM(G, True))


PLM(balanced,refine,pc,turbo) detected communities in 0.10080695152282715 [s]
solution properties:
-------------------  ----------
# communities         96
min community size     6
max community size   683
avg. community size  111.25
modularity             0.883865
-------------------  ----------
Out[36]:
<_NetworKit.Partition at 0x7f84d560b690>

We have switched on refinement, and we can see how modularity is slightly improved. For a small network like this, this takes only marginally longer.

Visualizing the Result

We can easily plot the distribution of community sizes as follows. While the distribution is skewed, it does not seem to fit a power-law, as shown by a log-log plot.


In [37]:
sizes = communities.subsetSizes()
sizes.sort(reverse=True)
ax1 = plt.subplot(2,1,1)
ax1.set_ylabel("size")
ax1.plot(sizes)

ax2 = plt.subplot(2,1,2)
ax2.set_xscale("log")
ax2.set_yscale("log")
ax2.set_ylabel("size")
ax2.plot(sizes)
plt.show()


Subgraph

NetworKit supports the creation of Subgraphs depending on an original graph and a set of nodes. This might be useful in case you want to analyze certain communities of a graph. Let's say that community 2 of the above result is of further interest, so we want a new graph that consists of nodes and intra cluster edges of community 2.


In [38]:
c2 = communities.getMembers(2)
g2 = G.subgraphFromNodes(c2)

In [39]:
communities.subsetSizeMap()[2]


Out[39]:
166

In [40]:
g2.numberOfNodes()


Out[40]:
166

As we can see, the number of nodes in our subgraph matches the number of nodes of community 2. The subgraph can be used like any other graph object, e.g. further community analysis:


In [41]:
communities2 = community.detectCommunities(g2)


PLM(balanced,pc,turbo) detected communities in 0.07078909873962402 [s]
solution properties:
-------------------  ---------
# communities        12
min community size    4
max community size   30
avg. community size  13.8333
modularity            0.752052
-------------------  ---------

In [42]:
viztasks.drawCommunityGraph(g2,communities2)
plt.show()


Centrality

Centrality measures the relative importance of a node within a graph. Code for centrality analysis is grouped into the centrality module.

Betweenness Centrality

We implement Brandes' algorithm for the exact calculation of betweenness centrality. While the algorithm is efficient, it still needs to calculate shortest paths between all pairs of nodes, so its scalability is limited. We demonstrate it here on the small Karate club graph.


In [43]:
K = readGraph("input/karate.graph", Format.METIS)

In [44]:
bc = centrality.Betweenness(K)
bc.run()


Out[44]:
<_NetworKit.Betweenness at 0x7f84d5a274a8>

We have now calculated centrality values for the given graph, and can retrieve them either as an ordered ranking of nodes or as a list of values indexed by node id.


In [45]:
bc.ranking()[:10] # the 10 most central nodes


Out[45]:
[(0, 462.14285714285717),
 (33, 321.1031746031745),
 (32, 153.38095238095238),
 (2, 151.70158730158732),
 (31, 146.0190476190476),
 (8, 59.05873015873016),
 (1, 56.95714285714285),
 (13, 48.43174603174603),
 (19, 34.2936507936508),
 (5, 31.666666666666668)]

Approximation of Betweenness

Since exact calculation of betweenness scores is often out of reach, NetworKit provides an approximation algorithm based on path sampling. Here we estimate betweenness centrality in PGPgiantcompo, with a probabilistic guarantee that the error is no larger than an additive constant $\epsilon$.


In [46]:
abc = centrality.ApproxBetweenness(G, epsilon=0.1)
abc.run()


Out[46]:
<_NetworKit.ApproxBetweenness at 0x7f84d5a27128>

The 10 most central nodes according to betweenness are then


In [47]:
abc.ranking()[:10]


Out[47]:
[(1143, 0.16365824308062585),
 (6655, 0.10589651022864024),
 (6555, 0.09025270758122747),
 (7297, 0.08303249097472928),
 (3156, 0.06859205776173288),
 (6744, 0.06618531889290014),
 (6932, 0.06498194945848378),
 (6098, 0.06257521058965104),
 (2258, 0.05655836341756921),
 (7369, 0.05174488567990374)]

Eigenvector Centrality and PageRank

Eigenvector centrality and its variant PageRank assign relative importance to nodes according to their connections, incorporating the idea that edges to high-scoring nodes contribute more. PageRank is a version of eigenvector centrality which introduces a damping factor, modeling a random web surfer which at some point stops following links and jumps to a random page. In PageRank theory, centrality is understood as the probability of such a web surfer to arrive on a certain page. Our implementation of both measures is based on parallel power iteration, a relatively simple eigensolver.


In [48]:
# Eigenvector centrality
ec = centrality.EigenvectorCentrality(K)
ec.run()
ec.ranking()[:10] # the 10 most central nodes


Out[48]:
[(33, 0.37335860763538437),
 (0, 0.3554879627576304),
 (2, 0.31719212126079693),
 (32, 0.308641699961726),
 (1, 0.2659584485486244),
 (8, 0.2274061452435449),
 (13, 0.22647475684342064),
 (3, 0.2111796960531623),
 (31, 0.19103658572493037),
 (30, 0.1747599501690216)]

In [49]:
# PageRank
pr = centrality.PageRank(K, 1e-6)
pr.run()
pr.ranking()[:10] # the 10 most central nodes


Out[49]:
[(33, 0.02941190490185556),
 (0, 0.029411888071820155),
 (32, 0.02941184486730034),
 (1, 0.02941180477938106),
 (2, 0.02941179873364914),
 (3, 0.029411771282676906),
 (31, 0.029411770725212477),
 (5, 0.029411768995095993),
 (6, 0.029411768995095993),
 (23, 0.029411763985014328)]

NetworkX Compatibility

NetworkX is a popular Python package for network analysis. To let both packages complement eachother, and to enable the adaptation of existing NetworkX-based code, we support the conversion of the respective graph data structures.


In [50]:
import networkx as nx
nxG = nxadapter.nk2nx(G) # convert from NetworKit.Graph to networkx.Graph
print(nx.degree_assortativity_coefficient(nxG))


0.238211371708

Generating Graphs

An important subfield of network science is the design and analysis of generative models. A variety of generative models have been proposed with the aim of reproducing one or several of the properties we find in real-world complex networks. NetworKit includes generator algorithms for several of them.

The Erdös-Renyi model is the most basic random graph model, in which each edge exists with the same uniform probability. NetworKit provides an efficient generator:


In [51]:
ERG = generators.ErdosRenyiGenerator(1000, 0.1).generate()
profiling.Profile.create(ERG, preset="minimal").show()


G#134
1000
50009
0.100118
False
False
0
N/A
N/A
1
Node centrality index which ranks nodes by their degree.
DegreeCentrality
Properties
$ n = $ 1000
$ f_{BC} = $ 1.001
$ r = $ -0.00112961
$ C = $ 0.0333511
Location
$ x_{(1)} = $ 72
$ x_{(n)} = $ 130
$ \widetilde{x}_{O_{min}} = $ 72
$ \widetilde{x}_{N_{min}} = $ 77
$ \widetilde{x}_{0.25} = $ 94
$ \widetilde{x}_{Med} = $ 100
$ \widetilde{x}_{0.75} = $ 106
$ \widetilde{x}_{N_{max}} = $ 124
$ \widetilde{x}_{O_{max}} = $ 130
$ \overline{x} = $ 100.018
$ \overline{x}_{IQ} = $ 100.004
$ \overline{x}_{R} = $ 101
$ \overline{x}_{H^{-1}} = $ 99.0884
$ \overline{x}_{H^{2}} = $ 100.476
$ \overline{x}_{H^{3}} = $ 100.931
Dispersion
$ s^{2}_{x} = $ 91.9757
$ s_{x} = $ 9.59039
$ v_{x} = $ 0.0958867
$ R = $ 58
$ R_{IQ} = $ 12
Shape
$ S_{YP} = $ 0.00563063
$ S_{M} = $ 0.0788501
$ \gamma = $ 0.0747428
Rank
$ s^{2}_{rk_{x}} = $ 83317.5
$ s_{rk_{x}} = $ 288.648
$ v_{rk_{x}} = $ 0.576719
Binning
$ k_{PDF} = $ 20
$ k_{CDF} = $ 56
$ x_{D_{PDF}} = $ 99.55
All nodes in a connected component are reachable from each other.
ConnectedComponents
Properties
$ n = $ 1
$ f_{BC} = $ nan
$ r = $ nan
$ C = $ nan
Location
$ x_{(1)} = $ 1000
$ x_{(n)} = $ 1000
$ \widetilde{x}_{O_{min}} = $ 1000
$ \widetilde{x}_{N_{min}} = $ 1000
$ \widetilde{x}_{0.25} = $ 1000
$ \widetilde{x}_{Med} = $ 1000
$ \widetilde{x}_{0.75} = $ 1000
$ \widetilde{x}_{N_{max}} = $ 1000
$ \widetilde{x}_{O_{max}} = $ 1000
$ \overline{x} = $ 1000
$ \overline{x}_{IQ} = $ 1000
$ \overline{x}_{R} = $ 1000
$ \overline{x}_{H^{-1}} = $ 1000
$ \overline{x}_{H^{2}} = $ 1000
$ \overline{x}_{H^{3}} = $ 1000
Dispersion
$ s^{2}_{x} = $ nan
$ s_{x} = $ nan
$ v_{x} = $ nan
$ R = $ 0
$ R_{IQ} = $ 0
Shape
$ S_{YP} = $ nan
$ S_{M} = $ nan
$ \gamma = $ nan
Rank
$ s^{2}_{rk_{x}} = $ nan
$ s_{rk_{x}} = $ nan
$ v_{rk_{x}} = $ nan
Binning
$ k_{PDF} = $ 1
$ k_{CDF} = $ 1
$ x_{D_{PDF}} = $ 1000

A simple way to generate a random graph with community structure is to use the ClusteredRandomGraphGenerator. It uses a simple variant of the Erdös-Renyi model: The node set is partitioned into a given number of subsets. Nodes within the same subset have a higher edge probability.


In [52]:
CRG = generators.ClusteredRandomGraphGenerator(200, 4, 0.2, 0.002).generate()

In [53]:
community.detectCommunities(CRG)


PLM(balanced,pc,turbo) detected communities in 0.11079144477844238 [s]
solution properties:
-------------------  ---------
# communities         4
min community size   46
max community size   59
avg. community size  50
modularity            0.709948
-------------------  ---------
Out[53]:
<_NetworKit.Partition at 0x7f84d594c4b0>

In [54]:
profiling.Profile.create(CRG, preset="minimal").show()


G#139
200
995
0.05
False
False
0
N/A
N/A
1
Node centrality index which ranks nodes by their degree.
DegreeCentrality
Properties
$ n = $ 200
$ f_{BC} = $ 1.00503
$ r = $ 0.0609344
$ C = $ 0.0531605
Location
$ x_{(1)} = $ 3
$ x_{(n)} = $ 20
$ \widetilde{x}_{O_{min}} = $ 3
$ \widetilde{x}_{N_{min}} = $ 3
$ \widetilde{x}_{0.25} = $ 7.5
$ \widetilde{x}_{Med} = $ 10
$ \widetilde{x}_{0.75} = $ 12
$ \widetilde{x}_{N_{max}} = $ 18
$ \widetilde{x}_{O_{max}} = $ 20
$ \overline{x} = $ 9.95
$ \overline{x}_{IQ} = $ 9.74
$ \overline{x}_{R} = $ 11.5
$ \overline{x}_{H^{-1}} = $ 8.87531
$ \overline{x}_{H^{2}} = $ 10.4384
$ \overline{x}_{H^{3}} = $ 10.8983
Dispersion
$ s^{2}_{x} = $ 10.0075
$ s_{x} = $ 3.16347
$ v_{x} = $ 0.317937
$ R = $ 17
$ R_{IQ} = $ 4.5
Shape
$ S_{YP} = $ -0.0474163
$ S_{M} = $ 0.382954
$ \gamma = $ -0.117194
Rank
$ s^{2}_{rk_{x}} = $ 3317.28
$ s_{rk_{x}} = $ 57.5958
$ v_{rk_{x}} = $ 0.573093
Binning
$ k_{PDF} = $ 14
$ k_{CDF} = $ 18
$ x_{D_{PDF}} = $ 8.46429
All nodes in a connected component are reachable from each other.
ConnectedComponents
Properties
$ n = $ 1
$ f_{BC} = $ nan
$ r = $ nan
$ C = $ nan
Location
$ x_{(1)} = $ 200
$ x_{(n)} = $ 200
$ \widetilde{x}_{O_{min}} = $ 200
$ \widetilde{x}_{N_{min}} = $ 200
$ \widetilde{x}_{0.25} = $ 200
$ \widetilde{x}_{Med} = $ 200
$ \widetilde{x}_{0.75} = $ 200
$ \widetilde{x}_{N_{max}} = $ 200
$ \widetilde{x}_{O_{max}} = $ 200
$ \overline{x} = $ 200
$ \overline{x}_{IQ} = $ 200
$ \overline{x}_{R} = $ 200
$ \overline{x}_{H^{-1}} = $ 200
$ \overline{x}_{H^{2}} = $ 200
$ \overline{x}_{H^{3}} = $ 200
Dispersion
$ s^{2}_{x} = $ nan
$ s_{x} = $ nan
$ v_{x} = $ nan
$ R = $ 0
$ R_{IQ} = $ 0
Shape
$ S_{YP} = $ nan
$ S_{M} = $ nan
$ \gamma = $ nan
Rank
$ s^{2}_{rk_{x}} = $ nan
$ s_{rk_{x}} = $ nan
$ v_{rk_{x}} = $ nan
Binning
$ k_{PDF} = $ 1
$ k_{CDF} = $ 1
$ x_{D_{PDF}} = $ 200

The Chung-Lu model (also called configuration model) generates a random graph which corresponds to a given degree sequence, i.e. has the same expected degree sequence. It can therefore be used to replicate some of the properties of a given real networks, while others are not retained, such as high clustering and the specific community structure.


In [55]:
degreeSequence = [CRG.degree(v) for v in CRG.nodes()]
clgen = generators.ChungLuGenerator(degreeSequence)
CLG = clgen.generate()
community.detectCommunities(CLG)


PLM(balanced,pc,turbo) detected communities in 0.0008919239044189453 [s]
solution properties:
-------------------  ---------
# communities         7
min community size    1
max community size   43
avg. community size  28.5714
modularity            0.281093
-------------------  ---------
Out[55]:
<_NetworKit.Partition at 0x7f84d59d7c30>

In [56]:
profiling.Profile.create(CLG, preset="minimal").show()


G#150
200
929
0.0466834
False
False
0
N/A
N/A
2
Node centrality index which ranks nodes by their degree.
DegreeCentrality
Properties
$ n = $ 200
$ f_{BC} = $ 1.00503
$ r = $ 0.0102933
$ C = $ 0.066997
Location
$ x_{(1)} = $ 0
$ x_{(n)} = $ 22
$ \widetilde{x}_{O_{min}} = $ 0
$ \widetilde{x}_{N_{min}} = $ 0
$ \widetilde{x}_{0.25} = $ 6
$ \widetilde{x}_{Med} = $ 9
$ \widetilde{x}_{0.75} = $ 12
$ \widetilde{x}_{N_{max}} = $ 20
$ \widetilde{x}_{O_{max}} = $ 22
$ \overline{x} = $ 9.29
$ \overline{x}_{IQ} = $ 9.03
$ \overline{x}_{R} = $ 11
$ \overline{x}_{H^{-1}} = $ nan
$ \overline{x}_{H^{2}} = $ 10.0802
$ \overline{x}_{H^{3}} = $ 10.7849
Dispersion
$ s^{2}_{x} = $ 15.3828
$ s_{x} = $ 3.92209
$ v_{x} = $ 0.422184
$ R = $ 22
$ R_{IQ} = $ 6
Shape
$ S_{YP} = $ 0.22182
$ S_{M} = $ 0.432592
$ \gamma = $ 0.0214311
Rank
$ s^{2}_{rk_{x}} = $ 3327.84
$ s_{rk_{x}} = $ 57.6874
$ v_{rk_{x}} = $ 0.574004
Binning
$ k_{PDF} = $ 14
$ k_{CDF} = $ 21
$ x_{D_{PDF}} = $ 5.5
All nodes in a connected component are reachable from each other.
ConnectedComponents
Properties
$ n = $ 2
$ f_{BC} = $ 2
$ r = $ nan
$ C = $ nan
Location
$ x_{(1)} = $ 1
$ x_{(n)} = $ 199
$ \widetilde{x}_{O_{min}} = $ 1
$ \widetilde{x}_{N_{min}} = $ 1
$ \widetilde{x}_{0.25} = $ 1
$ \widetilde{x}_{Med} = $ 100
$ \widetilde{x}_{0.75} = $ 199
$ \widetilde{x}_{N_{max}} = $ 199
$ \widetilde{x}_{O_{max}} = $ 199
$ \overline{x} = $ 100
$ \overline{x}_{IQ} = $ 100
$ \overline{x}_{R} = $ 100
$ \overline{x}_{H^{-1}} = $ 1.99
$ \overline{x}_{H^{2}} = $ 140.716
$ \overline{x}_{H^{3}} = $ 157.946
Dispersion
$ s^{2}_{x} = $ 19602
$ s_{x} = $ 140.007
$ v_{x} = $ 1.40007
$ R = $ 198
$ R_{IQ} = $ 198
Shape
$ S_{YP} = $ 0
$ S_{M} = $ 0
$ \gamma = $ -2.75
Rank
$ s^{2}_{rk_{x}} = $ 0.5
$ s_{rk_{x}} = $ 0.707107
$ v_{rk_{x}} = $ 0.471405
Binning
$ k_{PDF} = $ 5
$ k_{CDF} = $ 2
$ x_{D_{PDF}} = $ 20.8

Settings

In this section we discuss global settings.

Logging

When using NetworKit from the command line, the verbosity of console output can be controlled via several loglevels, from least to most verbose: FATAL, ERROR, WARN, INFO, DEBUG and TRACE. (Currently, logging is only available on the console and not visible in the IPython Notebook).


In [57]:
getLogLevel() # the default loglevel


Out[57]:
'ERROR'

In [58]:
setLogLevel("TRACE") # set to most verbose mode
setLogLevel("ERROR") # set back to default

Please note, that the default build setting is optimized (--optimize=Opt) and thus, every LOG statement below INFO is removed. If you need DEBUG and TRACE statements, please build the extension module by appending --optimize=Dbg when calling the setup script.

Parallelism

The degree of parallelism can be controlled and monitored in the following way:


In [59]:
setNumberOfThreads(4) # set the maximum number of available threads

In [60]:
getMaxNumberOfThreads() # see maximum number of available threads


Out[60]:
4

In [61]:
getCurrentNumberOfThreads() # the number of threads currently executing


Out[61]:
1

Support

NetworKit is an open-source project that improves with suggestions and contributions from its users. The email list networkit@ira.uni-karlsruhe.de is the place for general discussion and questions.


In [ ]: