{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# NetworKit User Guide" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## About NetworKit" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "[NetworKit][networkit] is an open-source toolkit for high-performance\n", "network analysis. Its aim is to provide tools for the analysis of large\n", "networks in the size range from thousands to billions of edges. For this\n", "purpose, it implements efficient graph algorithms, many of them parallel to\n", "utilize multicore architectures. These are meant to compute standard measures\n", "of network analysis, such as degree sequences, clustering coefficients and\n", "centrality. In this respect, NetworKit is comparable\n", "to packages such as [NetworkX][networkx], albeit with a focus on parallelism \n", "and scalability. NetworKit is also a testbed for algorithm engineering and\n", "contains a few novel algorithms from recently published research, especially\n", "in the area of community detection.\n", "\n", "[networkit]: http://parco.iti.kit.edu/software/networkit.shtml \n", "[networkx]: http://networkx.github.com/\n", "\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Introduction" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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.\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Preparation" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This notebook creates some plots. To show them in the notebook, matplotlib must be imported and we need to activate matplotlib's inline mode:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "%matplotlib inline\n", "import matplotlib.pyplot as plt" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import networkit as nk" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Reading and Writing Graphs" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let us start by reading a network from a file on disk: `PGPgiantcompo.graph` network. 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.\n", "\n", "There is a convenient function in the top namespace which tries to guess the input format and select the appropriate reader:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "G = nk.readGraph(\"../input/PGPgiantcompo.graph\", nk.Format.METIS)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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](http://people.sc.fsu.edu/~jburkardt/data/metis_graph/metis_graph.html). Various example graphs in this format can be found [here](http://www.cc.gatech.edu/dimacs10/downloads.shtml). 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:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "G = nk.graphio.METISGraphReader().read(\"../input/PGPgiantcompo.graph\")\n", "# is the same as: readGraph(\"input/PGPgiantcompo.graph\", Format.METIS)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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.\n", "\n", "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:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import os\n", "\n", "if not os.path.isdir('./output/'):\n", " os.makedirs('./output')\n", "nk.graphio.writeGraph(G,\"output/PGPgiantcompo.graphviz\", nk.Format.GraphViz)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "NetworKit also provides a function to convert graphs directly:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "nk.graphio.convertGraph(nk.Format.LFR, nk.Format.GML, \"../input/example.edgelist\", \"output/example.gml\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For an overview about supported graph formats and how to properly use NetworKit to read/write and convert see the [IO-tutorial notebook](./IONotebook.ipynb). For all input examples available in the NetworKit repository, there exists also a [table](https://github.com/networkit/networkit/blob/master/input/README.md) showing the format and useable reader." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## The Graph Object" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "`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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(G.numberOfNodes(), G.numberOfEdges())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Nodes are simply integer indices, and edges are pairs of such indices." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "for u in G.iterNodes():\n", " if u > 5:\n", " print('...')\n", " break\n", " print(u)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "i = 0\n", "for u, v in G.iterEdges():\n", " if i > 5:\n", " print('...')\n", " break\n", " print(u, v)\n", " i += 1" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "i = 0\n", "for u, v, w in G.iterEdgesWeights():\n", " if i > 5:\n", " print('...')\n", " break\n", " print(u, v, w)\n", " i += 1" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This network is unweighted, meaning that each edge has the default weight of 1." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "G.weight(42, 11)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Connected Components" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "cc = nk.components.ConnectedComponents(G)\n", "cc.run()\n", "print(\"number of components \", cc.numberOfComponents())\n", "v = 0\n", "print(\"component of node \", v , \": \" , cc.componentOfNode(0))\n", "print(\"map of component sizes: \", cc.getComponentSizes())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Degree Distribution" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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. " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import numpy\n", "dd = sorted(nk.centrality.DegreeCentrality(G).run().scores(), reverse=True)\n", "degrees, numberOfNodes = numpy.unique(dd, return_counts=True)\n", "plt.xscale(\"log\")\n", "plt.xlabel(\"degree\")\n", "plt.yscale(\"log\")\n", "plt.ylabel(\"number of nodes\")\n", "plt.plot(degrees, numberOfNodes)\n", "plt.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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](https://pypi.python.org/pypi/powerlaw) module. Call the following function:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "try:\n", " import powerlaw\n", " fit = powerlaw.Fit(dd)\n", "except ImportError:\n", " print (\"Module powerlaw could not be loaded\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The powerlaw coefficient can then be retrieved via:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "try:\n", " import powerlaw\n", " fit.alpha\n", "except ImportError:\n", " print (\"Module powerlaw could not be loaded\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If you further want to know how \"good\" it fits the power law distribution, you can use the the `distribution_compare`-function." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "try:\n", " import powerlaw\n", " fit.distribution_compare('power_law','exponential')\n", "except ImportError:\n", " print (\"Module powerlaw could not be loaded\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Community Detection" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "nk.community.detectCommunities(G)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "communities = nk.community.detectCommunities(G)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "*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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "nk.community.Modularity().getQuality(communities, G)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### The Partition Data Structure" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The result of community detection is a partition of the node set into disjoint subsets. It is represented by the `Partition` data structure, which provides several methods for inspecting and manipulating a partition of a set of elements (which need not be the nodes of a graph)." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "type(communities)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(\"{0} elements assigned to {1} subsets\".format(communities.numberOfElements(),\n", " communities.numberOfSubsets()))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "print(\"the biggest subset has size {0}\".format(max(communities.subsetSizes())))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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*." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "nk.community.writeCommunities(communities, \"output/communties.partition\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Choice of Algorithm" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "nk.community.detectCommunities(G, algo=nk.community.PLM(G, True))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Visualizing the Result" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "sizes = communities.subsetSizes()\n", "sizes.sort(reverse=True)\n", "ax1 = plt.subplot(2,1,1)\n", "ax1.set_ylabel(\"size\")\n", "ax1.plot(sizes)\n", "\n", "ax2 = plt.subplot(2,1,2)\n", "ax2.set_xscale(\"log\")\n", "ax2.set_yscale(\"log\")\n", "ax2.set_ylabel(\"size\")\n", "ax2.plot(sizes)\n", "plt.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Search and Shortest Paths" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A simple breadth-first search from a starting node can be performed as follows:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "v = 0\n", "bfs = nk.distance.BFS(G, v)\n", "bfs.run()\n", "\n", "bfsdist = bfs.getDistances()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "sum(bfsdist) / len(bfsdist)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "dijkstra = nk.distance.Dijkstra(G, v)\n", "dijkstra.run()\n", "spdist = dijkstra.getDistances()\n", "sum(spdist) / len(spdist)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Centrality" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "[Centrality](http://en.wikipedia.org/wiki/Centrality) measures the relative importance of a node within a graph. Code for centrality analysis is grouped into the `centrality` module." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Betweenness Centrality" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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. " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "K = nk.readGraph(\"../input/karate.graph\", nk.Format.METIS)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "bc = nk.centrality.Betweenness(K)\n", "bc.run()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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. " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "bc.ranking()[:10] # the 10 most central nodes" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Approximation of Betweenness" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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$." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "abc = nk.centrality.ApproxBetweenness(G, epsilon=0.1)\n", "abc.run()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The 10 most central nodes according to betweenness are then" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "abc.ranking()[:10]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Eigenvector Centrality and PageRank" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# Eigenvector centrality\n", "ec = nk.centrality.EigenvectorCentrality(K)\n", "ec.run()\n", "ec.ranking()[:10] # the 10 most central nodes" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "# PageRank\n", "pr = nk.centrality.PageRank(K, 1e-6)\n", "pr.run()\n", "pr.ranking()[:10] # the 10 most central nodes" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Core Decomposition" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "K = nk.readGraph(\"../input/karate.graph\", nk.Format.METIS)\n", "coreDec = nk.centrality.CoreDecomposition(K)\n", "coreDec.run()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "set(coreDec.scores())" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "from networkit import vizbridges\n", "\n", "nk.vizbridges.widgetFromGraph(K, dimension = nk.vizbridges.Dimension.Two, nodeScores = coreDec.scores())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Subgraph" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "c2 = communities.getMembers(2)\n", "g2 = nk.graphtools.subgraphFromNodes(G, c2, compact=True)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "communities.subsetSizeMap()[2]" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "g2.numberOfNodes()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "communities2 = nk.community.detectCommunities(g2)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "nk.vizbridges.widgetFromGraph(g2, dimension = nk.vizbridges.Dimension.Two, nodePartition=communities2)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## NetworkX Compatibility" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "[NetworkX](https://networkx.org/) is a popular Python package for network analysis. To let both packages complement each other, and to enable the adaptation of existing NetworkX-based code, we support the conversion of the respective graph data structures." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import networkx as nx\n", "nxG = nk.nxadapter.nk2nx(G) # convert from NetworKit.Graph to networkx.Graph\n", "print(nx.degree_assortativity_coefficient(nxG))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Generating Graphs" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "ERD = nk.generators.ErdosRenyiGenerator(200, 0.2).generate()\n", "print(ERD.numberOfNodes(), ERD.numberOfEdges())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Transitivity / Clustering Coefficients" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "nk.globals.clustering(G)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "CRG = nk.generators.ClusteredRandomGraphGenerator(200, 4, 0.2, 0.002).generate()\n", "nk.community.detectCommunities(CRG)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "degreeSequence = [CRG.degree(v) for v in CRG.iterNodes()]\n", "clgen = nk.generators.ChungLuGenerator(degreeSequence)\n", "CLG = clgen.generate()\n", "nk.community.detectCommunities(CLG)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Settings" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "In this section we discuss global settings." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Logging" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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). " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "nk.getLogLevel() # the default loglevel" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "nk.setLogLevel(\"TRACE\") # set to most verbose mode\n", "nk.setLogLevel(\"ERROR\") # set back to default" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "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." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Parallelism" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The degree of parallelism can be controlled and monitored in the following way:" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "nk.setNumberOfThreads(4) # set the maximum number of available threads" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "nk.getMaxNumberOfThreads() # see maximum number of available threads" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "nk.getCurrentNumberOfThreads() # the number of threads currently executing" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Profiling\n", "\n", "The [profiling module](https://networkit.github.io/dev-docs/python_api/profiling.html?highlight=profiling#) allows to get an overall picture of a network with a single line of code. Detailed statistics of the main properties of the network are shown both graphically and numerically." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "import warnings\n", "warnings.filterwarnings('ignore')\n", "nk.profiling.Profile.create(G).show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Support" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "NetworKit is an open-source project that improves with suggestions and contributions from its users. The [mailing list](https://sympa.cms.hu-berlin.de/sympa/subscribe/networkit) is the place for general discussion and questions." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.0" } }, "nbformat": 4, "nbformat_minor": 4 }