Skip to content

Commit d9d4ebd

Browse files
committed
add: intrductions and changed adjacency matrix from lower to upper
1 parent d209f9c commit d9d4ebd

File tree

5 files changed

+73
-40
lines changed

5 files changed

+73
-40
lines changed

doc/source/community_detection_guide/notebooks/consensus_clustering.ipynb

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,19 @@
77
"source": [
88
"# Consensus clustering\n",
99
"\n",
10-
"Consensus clustering is a method that combines the results of multiple clustering runs to produce a more stable and reliable clustering solution. It is particularly useful when the results of a single clustering algorithm are not robust or consistent across different runs. By aggregating the outputs of various clustering runs, consensus clustering aims to identify clusters that are consistently found across different runs and are therefore more likely to be true representations of the underlying data structur"
10+
"Consensus clustering is a powerful technique for overcoming the instability of single community detection runs. While a single algorithm might give you one partition of a network, running it multiple times can often produce different results, leaving you unsure of which outcome is the most reliable.\n",
11+
"\n",
12+
"This notebook introduces the concept of **consensus clustering**, a method that combines the results of multiple community detection runs to produce a more stable and robust community structure. It aims to identify communities that are consistently found across different runs and are therefore more likely to be true representations of the underlying data structure.\n",
13+
"\n",
14+
"We will learn how to:\n",
15+
"\n",
16+
"* Run a community detection algorithm multiple times on the same network.\n",
17+
"\n",
18+
"* Construct a **co-occurrence matrix** to track how often nodes are clustered together.\n",
19+
"\n",
20+
"* Use this matrix to find a final, more stable consensus partition.\n",
21+
"\n",
22+
"---"
1123
]
1224
},
1325
{

0 commit comments

Comments
 (0)