Fact-checked by Grok 2 weeks ago

Clustering coefficient

In , the clustering coefficient is a measure that quantifies the degree to which nodes in a tend to cluster together, reflecting the extent to which the neighbors of a given are interconnected with each other. Introduced by and Steven H. Strogatz in their 1998 study on small-world networks, it serves as a key metric for characterizing the local structure of , where high values indicate dense, triangle-rich subgraphs often observed in real-world systems like social connections or biological interactions. The local clustering coefficient for a node i with degree k_i is defined as C_i = \frac{2E_i}{k_i(k_i - 1)}, where E_i is the number of edges connecting the neighbors of i; this represents the fraction of possible triangles centered on i that are actually present. The global clustering coefficient is typically the average of all local coefficients across the network, C = \frac{1}{N} \sum_{i=1}^N C_i, though an alternative formulation, known as the transitivity, is the number of closed triplets (or three times the number of triangles) divided by the total number of connected triplets (paths of length two) in the graph. In random graphs, the expected clustering coefficient approximates the average degree divided by the network size, \langle k \rangle / N, which is often orders of magnitude lower than in empirical networks, highlighting the non-random organization in systems such as the World Wide Web (where C \approx 0.108 versus C_{\text{rand}} \approx 0.00023) or actor collaboration networks (where C \approx 0.79). This metric plays a crucial role in network analysis by distinguishing hierarchical or modular structures from purely random connectivity, with applications spanning social sciences, where it captures friendship transitivity; , for protein interaction maps; and technology, for topology . High clustering coefficients are a hallmark of small-world properties, enabling efficient while maintaining local cohesion, as demonstrated in models like the Watts-Strogatz lattice rewiring, where clustering remains elevated even as path lengths shorten dramatically. Despite variations in definitions—such as for directed or weighted graphs— the core idea underscores how local density influences global network dynamics, informing models of , spread, and detection.

Fundamentals

Definition and Intuition

The clustering coefficient quantifies the tendency of nodes in a to form densely connected groups, particularly through the creation of triangles where three nodes are mutually interconnected, reflecting a higher local density than expected in random configurations. In contrast to random , where connections occur probabilistically without structure, real-world networks often exhibit elevated clustering, indicating non-random patterns of association that promote cohesion within subgroups. This measure was introduced by Duncan Watts and in their seminal 1998 paper on small-world networks, where they used it to characterize the balance between local clustering and global efficiency in interconnected systems. Intuitively, the clustering coefficient captures the social principle that "friends of friends are often friends," as seen in friendship networks where individuals connected to a common acquaintance are likely to know each other, or in social media platforms where shared followers frequently overlap in their connections. Unlike the average degree, which simply indicates the typical number of connections per and reflects overall sparsity or density, the clustering coefficient specifically assesses the interconnectivity among a 's neighbors, highlighting in relationships rather than mere volume. and global variants of the clustering coefficient extend this to measure such tendencies at individual and -wide scales, respectively.

Mathematical Foundations

In , a simple undirected is formally defined as a pair G = (V, E), where V is a finite nonempty set of vertices (or nodes) and E \subseteq \binom{V}{2} is a set of edges represented as unordered pairs of distinct vertices, excluding self-loops and multiple edges between the same pair of vertices. This structure captures pairwise connections without directionality or redundancy, serving as the foundational model for analyzing in contexts like social and biological systems. For a v \in V, the neighbors N(v) constitute the open neighborhood of v, defined as the set of all vertices adjacent to v via an in E. The closed neighborhood N extends this by including v itself: N = N(v) \cup \{v\}. These notions quantify the local around a vertex, essential for examining patterns of association in the . The A provides a of G, where for |V| = n, A is an n \times n with A_{ij} = 1 if \{i, j\} \in E and A_{ij} = 0 otherwise (and A_{ii} = 0 for simple graphs). This binary matrix facilitates algebraic computations; notably, the (i,j)-entry of A^3 counts the number of walks of length 3 between vertices i and j, and the \operatorname{tr}(A^3)/6 yields the total number of (complete subgraphs on three vertices) in G, as each triangle contributes six directed walks of length 3. Triadic closure describes the network phenomenon where two vertices sharing a common neighbor tend to form an between them, completing a and reinforcing local . This principle, rooted in sociological observations of tie strengths, underpins the structural incentives for formation in . The overall number of triangles in a graph thus serves as a global measure of such closures, computable via matrix methods or enumeration, and highlights the prevalence of tightly knit subgroups. These elements—graph structure, neighborhoods, matrix representations, and triangle counts—form the mathematical groundwork for quantifying clustering, where the coefficient assesses the ratio of realized triangles among possible triads centered at vertices.

Local Clustering

Local Clustering Coefficient

The local clustering coefficient for a node v in an undirected quantifies the extent to which the neighbors of v are interconnected, specifically measuring the fraction of possible edges among those neighbors that actually exist. This per-node metric captures the local density of connections in the immediate vicinity of v, providing into the structural around vertices. Intuitively, the local clustering coefficient reflects the "cliquishness" of a node's neighborhood, indicating whether the friends (or connections) of v tend to be connected to each other as well. For instance, in social networks, a high value suggests that the acquaintances of a person are likely to know one another, forming tight-knit groups. This measure is particularly useful for identifying nodes embedded in dense, triangle-rich subgraphs, where local is pronounced. The value of the local clustering coefficient C(v) lies in the interval [0, 1], with 0 signifying no connections among the neighbors (a sparse or tree-like structure around v) and 1 indicating a fully connected among them, where every pair of neighbors is linked. Nodes with less than 2 typically have C(v) = 0 by convention, as no triangles can form. Consider a simple example in a triangle graph consisting of three mutually connected s: for each node v, its two neighbors are fully linked, yielding C(v) = 1. In contrast, for a linear with nodes A–B–C, the endpoint nodes A and C have only one neighbor each, so C(A) = C(C) = 0; for the central node B, its neighbors A and C are not connected, resulting in C(B) = 0. These cases illustrate how the metric highlights varying degrees of local embedding in clustered versus acyclic structures.

Computation for Undirected Graphs

The local clustering coefficient C(v) for a vertex v in an undirected graph is computed as the ratio of the number of triangles involving v to the number of possible triples centered at v. A triangle is a set of three vertices all connected by edges, and a triple centered at v is a pair of distinct neighbors of v. Formally, C(v) = \frac{|\{ \{u, w\} \mid u, w \in N(v), u \neq w, \{u, w\} \in E \}|}{\binom{k_v}{2}}, where N(v) denotes the set of neighbors of v, k_v = |N(v)| is the degree of v, E(N(v)) is the set of edges among the neighbors of v, and \binom{k_v}{2} = \frac{k_v (k_v - 1)}{2} represents the maximum possible edges among those neighbors. This formula quantifies the density of connections in the neighborhood of v, with C(v) ranging from 0 (no connections among neighbors) to 1 (complete subgraph among neighbors). For vertices with low degree, the computation requires special handling to avoid or undefined values. If k_v = [0](/page/0) (an isolated vertex), there are no neighbors, so no triangles or triples exist, and C(v) is conventionally defined as . Similarly, if k_v = 1, there is only one neighbor, yielding \binom{1}{2} = 0 in the denominator with zero triangles in the numerator, so C(v) is again set to by , as no clustering is possible. Efficient computation of C(v) for all vertices in a with n vertices and m edges typically involves counting s, which can be done using the A (where A_{i,j} = 1 if vertices i and j are adjacent, and 0 otherwise). The number of s incident to v is given by \frac{(A^3)_{v,v}}{2}, since each contributes two closed walks of length 3 starting and ending at v (one in each direction around the ). Computing A^3 via standard has O(n^3) and O(n^2), suitable for dense graphs but inefficient for sparse large-scale networks. Faster approximations exist, such as sampling wedges (open triples) and checking closure, achieving O(m^{3/2}) time in practice for sparse graphs, or advanced methods like the Alon-Yuster-Zwick algorithm that separate high- and low-degree vertices for O(m^{1.41}) time using optimized . To illustrate, consider a small undirected with four \{A, B, C, D\} and edges \{A-B, A-C, B-C, A-D\}. For A ( k_A = 3, \{B, C, D\}):
  1. Identify possible triples: The pairs are \{B,C\}, \{B,D\}, \{C,D\}, so \binom{3}{2} = 3.
  2. Count edges among : There is an edge B-C, but none for B-D or C-D, yielding 1 edge.
  3. Compute C(A) = \frac{1}{3}.
For D ( 1, \{A\}): No pairs among , so C(D) = 0. This step-by-step process can be generalized in for any v:
function local_clustering(v, G):
    if degree(v) < 2:
        return 0
    neighbors = N(v)
    count = 0
    for i in 1 to |neighbors|-1:
        for j in i+1 to |neighbors|:
            if edge_exists(neighbors[i], neighbors[j]):
                count += 1
    return count / binom(degree(v), 2)
This direct enumeration runs in O(k_v^2) time per vertex, efficient for low-degree nodes but scalable via matrix methods for global computation. The local coefficients computed this way are often averaged across vertices to derive global clustering measures.

Global Clustering

Global Clustering Coefficient

The global clustering coefficient, often referred to as the transitivity index, quantifies the overall tendency for triadic closure in a network by measuring the fraction of connected triples that form triangles. It is formally defined as C = \frac{3 \times \text{number of triangles}}{\text{number of connected triples}}, where a triangle is a set of three vertices all pairwise connected, and a connected triple (or wedge) is a path of length two between two vertices via a common neighbor. This definition, introduced in network science literature, emphasizes the network's global transitivity rather than node-specific properties. This coefficient interprets the extent to which the network exhibits closure in its local structures: specifically, it represents the proportion of all wedges in the graph that are completed by an edge between their endpoints, thus capturing the likelihood that two neighbors of a common vertex are themselves connected. Values range from 0 (no triadic closures) to 1 (all possible wedges closed), providing a single scalar summary of clustering at the graph level. In contrast to graph density, which assesses the total proportion of realized edges relative to all possible pairs of vertices, the global clustering coefficient focuses exclusively on the closure of length-two paths, highlighting local cohesion without regard to long-range connectivity. This distinction makes it particularly useful for identifying hierarchical or modular structures in sparse networks. Key properties include its invariance to isolated nodes or vertices of degree less than 2, as these do not contribute to either triangles or connected triples in the denominator. Additionally, the measure is sensitive to small, densely connected components, where a high density of triangles relative to triples can elevate the overall coefficient even if the rest of the graph is sparse. While related computations may involve local clustering values, the global coefficient is a holistic transitivity measure distinct from their average.

Average Clustering Coefficient

The average clustering coefficient quantifies the overall level of clustering in a network by taking the arithmetic mean of the local clustering coefficients over all nodes. It is formally defined as \bar{C} = \frac{1}{|V|} \sum_{v \in V} C(v), where |V| is the number of nodes in the network and C(v) is the local clustering coefficient for node v. This metric offers a straightforward way to assess the extent to which nodes' neighbors tend to connect with each other across the entire graph, providing insight into the network's local cohesion without weighting by node characteristics. Introduced in the context of , it highlights how real-world graphs often exhibit higher values than random graphs with similar degree sequences. Despite its simplicity, the unweighted average can introduce biases in networks with heterogeneous degree distributions, where it is sensitive to the clustering patterns of low-degree nodes due to their numerical dominance. This can lead to an underrepresentation of clustering around high-degree nodes, which are typically more structurally significant. To mitigate this, a degree-weighted variant is often employed: \bar{C}_w = \frac{1}{\sum_{v \in V} k_v} \sum_{v \in V} k_v C(v), where k_v denotes the degree of node v. By assigning weights proportional to degree, this measure emphasizes the clustering in neighborhoods of influential nodes, yielding a more balanced view in degree-heterogeneous settings. The degree-weighted average is particularly useful in heterogeneous networks, such as scale-free topologies, where node roles differ markedly by degree and equal weighting may obscure key structural features. For instance, in scale-free networks, the unweighted average may underestimate clustering in hubs, as the abundance of low-degree nodes with comparatively lower local clustering dilutes the contribution from high-degree hubs, which often exhibit denser connections among their neighbors.

Extensions and Variations

Clustering in Directed and Weighted Networks

In directed networks, the clustering coefficient is extended to respect edge directions, distinguishing between different types of directed triangles to capture asymmetric relationships. A seminal approach introduces four variants of the local clustering coefficient for a node i: the cycle variant, which measures the proportion of cyclical directed triangles (i → j → k → i); the middleman variant, where i serves as an intermediary (j → i → k and j → k); the in variant, focusing on two incoming edges to i closed by an edge between sources; and the out variant, for two outgoing edges from i closed by an edge between targets. These variants address the asymmetry inherent in directed graphs, where the undirected formulation fails to account for edge orientations, potentially underestimating or misrepresenting local transitivity. For the binary case, the cycle clustering coefficient is given by C_{\text{cyc},i} = \frac{(A^3)_{ii}}{d_{\text{in},i} d_{\text{out},i} - d_{\leftrightarrow,i}}, where A is the adjacency matrix, d_{\text{in},i} and d_{\text{out},i} are the in- and out-degrees of i, and d_{\leftrightarrow,i} counts bidirectional links involving i. Similar matrix-based formulas apply to the other variants, with the denominator adjusted for the specific pattern's possible triples (e.g., d_{\text{in},i} (d_{\text{in},i} - 1) for in-clustering). An overall directed clustering coefficient can be computed as the average of a combined local measure across nodes. In practice, citation networks exemplify directed clustering, where a high cycle coefficient indicates papers that mutually reference each other's sources, revealing knowledge clusters. For weighted networks, the local clustering coefficient incorporates edge weights to reflect the intensity of connections among a node's neighbors. A straightforward extension defines the weighted local clustering coefficient for node v as C_w(v) = \frac{\sum_{i,j \in N(v)} w_{ij}}{k_v (k_v - 1)}, where N(v) is the set of neighbors of v, w_{ij} is the weight of the edge between i and j (or 0 if absent), and k_v is the degree of *v$. This aggregates the total "strength" of links among neighbors, normalized by the number of possible pairs, providing a measure of weighted transitivity. Normalization options vary; for instance, dividing by the sum of all neighbor weights or using geometric means can adjust for scale differences in weights. Challenges in weighted cases include choosing the aggregation method—arithmetic sums emphasize strong ties, while geometric means (e.g., raising weights to the power of 1/3 in triangle products) balance contributions more evenly—and handling asymmetry when combined with directed edges. In weighted directed networks, extensions apply these weight incorporations to pattern-specific coefficients, as in world trade networks where edge weights represent trade volumes, and high weighted cycle clustering signals strong reciprocal economic clusters. These adaptations build on undirected computations by adjusting for structural complexities, enabling analysis of real-world systems like collaboration networks weighted by co-authorship frequency, where elevated C_w(v) highlights tightly knit research groups.

Applications in Real-World Networks

In social networks, the clustering coefficient reveals high local connectivity among friends, often indicating homophily where similar individuals tend to form tightly knit groups. For instance, analysis of the Facebook social graph shows an average local clustering coefficient of approximately 0.14 for users with around 100 friends, which is substantially higher than in comparable random networks and reflects the prevalence of mutual friendships. This elevated clustering aids in understanding social cohesion and has been applied using both local and global measures to map community structures in platforms like Facebook. In biological networks, particularly protein-protein interaction (PPI) graphs, the clustering coefficient exceeds that of random null models, highlighting modular organization and functional specificity. For the yeast PPI network, mean clustering coefficients range from 0.084 to 0.144 depending on the definition used, far surpassing the near-zero values in equivalent random scale-free networks, which facilitates the detection of protein complexes and biological modules. Such elevated clustering underscores evolutionary pressures for localized interactions in cellular processes. Technological networks, such as the Internet's autonomous system (AS) topology, exhibit relatively low clustering coefficients, typically around 0.20 to 0.30 over the period from 2002 to 2010, which reflects the hierarchical and decentralized structure designed for efficient routing rather than dense local connections. This lower clustering compared to social or biological networks emphasizes the role of global efficiency in infrastructure design, where alternative paths are limited to maintain scalability. Post-2010 applications have integrated clustering coefficients into machine learning pipelines for community detection and anomaly identification in real-world networks. For example, spectral heuristics leveraging local clustering coefficients have improved community partitioning in social and collaboration graphs by prioritizing dense subgraphs. In fraud detection, clustering coefficients serve as features in autoencoder-based models to spot anomalies in transaction networks, where deviant nodes show atypically low local clustering indicative of illicit patterns. Despite these insights, clustering coefficients can overestimate connectivity in small networks due to finite-size effects, where random edges inadvertently form triangles more frequently than in large-scale equivalents. To address this, comparisons to null models like the are essential, as it preserves degree sequences while randomizing connections to provide a baseline for assessing significant clustering beyond structural constraints.

Theoretical Aspects

Relationship to Network Properties

The clustering coefficient plays a central role in characterizing small-world properties of networks, where high local clustering is combined with short average path lengths. In the , rewiring a fraction of edges in a regular lattice preserves a high clustering coefficient close to that of the original lattice while drastically reducing the path length, yielding networks that interpolate between ordered and random structures. This combination distinguishes small-world networks from purely random graphs and regular lattices, as observed in many real-world systems like neural and social networks. Clustering coefficients are often elevated in networks exhibiting assortative mixing or modular structures. Assortative mixing, where nodes preferentially connect to others of similar degree, correlates positively with higher clustering, as demonstrated by combinatorial analyses showing that transitivity (a form of clustering) contributes directly to the assortativity coefficient alongside degree variance. Similarly, modular networks, characterized by densely connected communities with sparse inter-community links, tend to display increased clustering within modules, enhancing overall modularity as measured by . These relationships underscore how clustering reinforces community-like organization in complex networks. In contrast to real networks, random graphs generated by the Erdős–Rényi model exhibit low clustering, with the global clustering coefficient approximately equal to the edge probability p, since the probability of closing a triplet is simply p given independent edges. Real-world networks, however, consistently show clustering coefficients substantially exceeding this baseline value, highlighting deviations from random wiring and indicating underlying structural correlations. In scale-free networks, such as those produced by the Barabási–Albert model via preferential attachment, the average clustering coefficient decays with network size, often scaling as C \sim (\ln N)^2 / N for large N, and the local clustering coefficient decreases with node as C(k) \sim k^{-\alpha} for some exponent \alpha > 0. This degree-dependent decay relates to the power-law exponent \gamma of the degree distribution, where higher \gamma (less heavy-tailed) can sustain relatively higher clustering compared to random models with equivalent degree sequences. To assess whether observed clustering deviates significantly from null expectations, researchers employ or techniques, generating ensembles of surrogate networks (e.g., via edge rewiring while preserving degrees) and comparing the empirical clustering to the distribution under the null model. If the observed value exceeds the of this distribution, the clustering is deemed statistically significant, providing evidence against randomness.

in Clustered Networks

In network , the process involves randomly occupying bonds (edges) or sites (nodes) with probability p, leading to the emergence of a above a critical probability p_c, beyond which a macroscopic of the network becomes interconnected. This models phenomena such as the robustness of networks to random failures, where the represents the largest surviving connected structure after removals equivalent to $1-p of elements. Clustering significantly influences percolation dynamics by introducing local redundancies through triangles and higher-order cycles, which enhance resilience to random or removals. In clustered networks, these local structures provide alternative paths, allowing the to persist at lower occupation probabilities p compared to unclustered random graphs with the same degree distribution, effectively lowering p_c and enabling tolerance to higher removal fractions before fragmentation. For instance, analytical results show that moderate clustering reduces the size of the but tightens the interconnected core of high-degree nodes, making the network more resistant to damage. Theoretical models of clustered networks extend the Erdős–Rényi framework by incorporating triangles explicitly, such as Newman's variant where have specified numbers of single edges and triangle memberships, drawn from a joint distribution. This allows exact solutions for properties using generating functions, revealing that increased clustering shifts the to smaller p_c values, as the condition for emergence becomes [\langle s^2 \rangle / \langle s \rangle - 2][2 \langle t^2 \rangle / \langle t \rangle - 3] = 2 \langle st \rangle^2 / \langle s \rangle \langle t \rangle, where s and t denote single-edge and triangle counts per . Bounds from such models confirm that clustering bolsters by reducing effective dimensionality in local neighborhoods, with analytical predictions matching simulations showing smaller but more robust s. These insights apply to real-world systems where clustering affects percolation-like processes. In , clustered contact networks raise the critical transmission probability for epidemics, slowing disease spread due to contained local outbreaks rather than global . Similarly, in like power grids, inherent clustering from modular designs provides , enhancing to random failures and maintaining functionality beyond thresholds that would collapse less clustered topologies.

References

  1. [1]
    [PDF] Collective dynamics of 'small-world' networks - SNAP: Stanford
    The clustering coefficient C(p) is defined as follows. Suppose that a vertex v has kv neighbours; then at most kvðkv 2 1Þ/2 edges can exist between them ...
  2. [2]
  3. [3]
    Small-world network - Scholarpedia
    Oct 19, 2022 · The minimum value of the clustering coefficient is C = 0. It can also be useful define a local clustering coefficient (Watts and Strogatz ...
  4. [4]
  5. [5]
    [PDF] Lecture 8: Network Science I 8.1 Motivation
    An intuitive explanation of clustering coefficient in a social network is ... Graph theory provides the general toolbox for studying networks. In 1735 ...
  6. [6]
    Chapter 2 - Network Science by Albert-László Barabási
    In directed networks we distinguish between incoming degree ... The degree of clustering of a whole network is captured by the average clustering coefficient ...
  7. [7]
    [PDF] 1 Basic Definitions and Concepts in Graph Theory
    An undirected graph without loops or multiple edges is known as a simple graph. In this class we will assume graphs to be simple unless otherwise stated. If ...
  8. [8]
    [PDF] Introduction to Graph Theory - FSU Math
    Since the edges of a simple graph are undirected, they are represented by unordered pairs of vertices rather than ordered pairs. For example, if V = {a, b, c}, ...
  9. [9]
    4.4 Introduction to Graph Theory
    The set of vertices adjacent to v is called the neighborhood of v, denoted N(v). This is sometimes called the open neighborhood of v to distinguish it from the ...
  10. [10]
    [PDF] notation, terminology, and preliminary results
    The open neighborhood of a vertex v, denoted N(v), is the set of vertices of. G that are adjacent to v. The closed neighborhood of a vertex v is N[v] = N(v)∪{v} ...
  11. [11]
    [PDF] Chapter 8 Graphs: Definition, Applications, Representation
    A simple cycle is a cycle that has no repeated vertices other than the start and end vertices being the same. In an undirected graph a (simple) cycle is a path ...
  12. [12]
    [PDF] MATH 1050, Homework 6
    Oct 3, 2013 · Problem 3: Let A be the adjacency matrix of a simple graph G. Show that tr(A3)/6 is equal to the number of triangles in G. Here tr denotes the ...
  13. [13]
    [PDF] The Strength of Weak Ties Mark S. Granovetter The American ...
    Jan 13, 2007 · The Strength of Weak Ties. Mark S. Granovetter. The American Journal of Sociology, Vol. 78, No. 6. (May, 1973), pp. 1360-1380. Stable URL ...
  14. [14]
    [PDF] Chapter 3 Strong and Weak Ties - Cornell: Computer Science
    We say that a node A violates the Strong Triadic Closure Property if it has strong ties to two other nodes B and C, and there is no edge at all (either a ...
  15. [15]
    [PDF] 1 Triangle Counting and Matrix Multiplication
    Suppose we write the graph as the adjacency matrix A 2 {0, 1} n⇥n. Since we have a matrix (with entries zeros and ones) we can think about the rich set of ...
  16. [16]
    Local Clustering Coefficients -- from Wolfram MathWorld
    The local clustering coefficient of a vertex v_i of a graph G is the fraction of pairs of neighbors of v_i that are connected over all pairs of neighbors of ...Missing: definition | Show results with:definition
  17. [17]
    Clustering coefficient definition - Math Insight
    The clustering coefficient is a measure of the number of triangles in a graph.
  18. [18]
    A Spatial Approach to Network Generation for Three Properties
    By convention, a node with degree of 0 or 1 is assigned clustering of 0. The theoretical range for C is the interval [0,1]. 2.4: Degree assortativity of a ...
  19. [19]
    [PDF] Finding and counting given length cycles - Stanford CS Theory
    We present an assortment of methods for finding and counting simple cycles of a given length in directed and undirected graphs. Most of the bounds obtained ...
  20. [20]
    [PDF] Approximating Clustering-Coefficient and Transitivity∗
    As many networks considered in complex systems are huge, the efficient computation of such network parameters is crucial. Several algorithms with polynomial ...
  21. [21]
    Collective dynamics of 'small-world' networks - Nature
    Download PDF. Letter; Published: 04 June 1998. Collective dynamics of 'small-world' networks. Duncan J. Watts &; Steven H. Strogatz.
  22. [22]
    None
    Summary of each segment:
  23. [23]
    When local and global clustering of networks diverge - ScienceDirect
    Jan 1, 2016 · The so-called Watts–Strogatz clustering coefficient of a node i, which quantifies the degree of transitivity of local relations in a network is ...
  24. [24]
    [1111.4503] The Anatomy of the Facebook Social Graph - arXiv
    Nov 18, 2011 · Second, by studying the average local clustering coefficient and degeneracy of graph neighborhoods, we show that while the Facebook graph as ...
  25. [25]
    A large-scale community structure analysis in Facebook
    Nov 6, 2012 · High values of average clustering coefficient indicate that the communities are well connected among each other. This result would be ...
  26. [26]
    Revisiting the variation of clustering coefficient of biological ...
    May 1, 2012 · Considering that the clustering coefficient of a random scale-free network is extremely small ( C ¯ ≈ 0 , for example, there are thousands of ...
  27. [27]
    [1202.3993] Internet Topology over Time - arXiv
    Feb 17, 2012 · The average path length has slowly and steadily increased since 2005 and the average clustering coefficient has steadily declined. We ...
  28. [28]
    Community detection in networks via a spectral heuristic based on ...
    Oct 30, 2014 · In this paper, the author proposes a spectral heuristic based on a measure known as clustering coefficient to detect communities in networks.Missing: post- | Show results with:post-
  29. [29]
    [PDF] Anomaly detection using autoencoders with network analysis features
    Within the clustering group of metrics, both the clustering coefficient and square clus- tering coefficient metrics were used. ... In fraud and anomaly detection ...
  30. [30]
    Measurement error of network clustering coefficients under ... - Nature
    Feb 10, 2021 · We have verified that the network average clustering coefficient is underestimated with an average relative error of 1-\tau _p for all datasets ...
  31. [31]
    Limit theorems for assortativity and clustering in null models ... - arXiv
    Dec 21, 2017 · A popular model is the configuration model, a network with assigned degrees and random connections. The erased configuration model is obtained ...
  32. [32]
    Combinatorial study of degree assortativity in networks | Phys. Rev. E
    Oct 17, 2011 · We prove, by combinatorial methods, that the assortativity of a network depends only on three structural factors: transitivity (clustering coefficient), ...
  33. [33]
    [0903.4009] Random graphs with clustering - arXiv
    Mar 24, 2009 · We show how standard random graph models can be generalized to incorporate clustering and give exact solutions for various properties of the resulting networks.
  34. [34]