From 3aee2fd43e3059a699af2b63c6f2395e5a55e515 Mon Sep 17 00:00:00 2001 From: KatolaZ Date: Wed, 27 Sep 2017 15:06:31 +0100 Subject: First commit on github -- NetBunch 1.0 --- doc/modularity.1.html | 151 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 151 insertions(+) create mode 100644 doc/modularity.1.html (limited to 'doc/modularity.1.html') diff --git a/doc/modularity.1.html b/doc/modularity.1.html new file mode 100644 index 0000000..a6d4242 --- /dev/null +++ b/doc/modularity.1.html @@ -0,0 +1,151 @@ + + + + + + modularity(1) - Compute the modularity of a partition of a graph + + + + + +
+ + + +
    +
  1. modularity(1)
  2. +
  3. www.complex-networks.net
  4. +
  5. modularity(1)
  6. +
+ +

NAME

+

+ modularity - Compute the modularity of a partition of a graph +

+ +

SYNOPSIS

+ +

modularity graph_in partition

+ +

DESCRIPTION

+ +

modularity computes the value of the modularity function associated +to a partition of the nodes of the graph given as input.

+ +

PARAMETERS

+ +
+
graph_in

undirected input graph (edge list). If is equal to - (dash), read + the edge list from STDIN.

+
partition

The name of the file containing the association of nodes to + communities (the partition of which one wants to compute the + modularity). See INPUT FORMAT for details.

+
+ + +

INPUT FORMAT

+ +

graph_in is an edge-list. The file partition is in the format:

+ +
    node_0 community_0
+    node_1 community_1
+    ....
+
+ +

where 'node_0' is the label of the first node and 'community_0' is the +community to which 'node_0' belongs, and so on.

+ +

OUTPUT

+ +

modularity prints on STDOUT the value of the modularity function +associated to the partition of the graph provided as input. The +program also prints on STDERR one line in the format:

+ +
    ## nc: NUM_COMMUNITIES
+
+ +

where 'NUM_COMMUNITIES' is the number of communities in the partition +provided as input.

+ +

REFERENCES

+ + + + +

AUTHORS

+ +

(c) Vincenzo 'KatolaZ' Nicosia 2009-2017 <v.nicosia@qmul.ac.uk>.

+ + +
    +
  1. www.complex-networks.net
  2. +
  3. September 2017
  4. +
  5. modularity(1)
  6. +
+ +
+ + -- cgit v1.2.3