Calculate the Fiedler value (algebraic connectivity)
Calculate the Fiedler value (algebraic connectivity)
This function expresses the algebraic connectivity of a Firm-Firm network as its Fiedler value. The Fiedler value, named after Miroslav Fiedler, who explored its significance, summarises the connectivity and robustness of a network. Mathematically, it is the second smallest eigenvalue of the network's Laplacian matrix
...: Firm-Firm network in one of the following classes:
financial_matrix produced by FF and family;
network_financial or network if the relevant package is installed;
igraph_financial or igraph if the relevant package is installed.
ignore.weights: Optional parameter, defaults to FALSE. If TRUE, ignore ties weights in the computation.
generalise: See Details for more information. Defaults to NULL.
Returns
A numeric, the Fiedler value.
Details
The Fiedler value is specifically defined for undirected graphs. For directed or asymmetrical networks like the Firm-Firm ones, the Laplacian is not necessarily symmetric, and its eigenvalues can be complex. In practical applications, this is more likely to happen in naively valued networks, due to the presence of large off-diagonal values. But it can happen also under other circumstances.
There are three main workarounds:
Symmetrisation - Simply considers the underlying undirected graph. This involves ignoring the direction of edges and calculating the Laplacian matrix and its eigenvalues as if the graph were undirected.
The generalised Laplacian calculated as the sum of the diagonal matrices for in-degree and out-degree ([D]in+[D]out)/2
The Hermitian part of the Laplacian - Uses the Hermitian part of the Laplacian matrix of the directed network ([M]+[M]C⊤))/2, where the second addendum is the conjugate transpose of the adjacency matrix.
Practically, the third method is excessive here, as the values of the ties cannot be complex numbers. Indeed, the Hermitian is actually the Laplacian of the underlying symmetric network with the value of the ties being split equally in both directions because the conjugate of a real number is that number. Moreover, symmetrising before calculating the Laplacian or generalising the matrix [L] returns the same result. So, the parameter generalise is logical and takes the following values:
TRUE for the generalised Laplacian;
FALSE for the possibly complex (and uninterpretable) eigenvalue of the as-is Laplacian.
NULL will take the generalised Laplacian only if necessary.
Examples
# Load some datadata('firms_BKB')# Create a FF matrixmat <- FF(firms_BKB, who ='b', ties ='n')fiedler(mat)# Create a FF networkif(!require('network')){ net <- FF.net(mat,'simple') fiedler(net)==fiedler(mat)}# Create a FF graphif(!require('igraph')){ g <- FF.graph(mat,'simple') fiedler(g)==fiedler(mat)}
References
Fiedler, Miroslav. ‘Laplacian of Graphs and Algebraic Connectivity’. Banach Center Publications 25, no. 1 (1989): 57–70. https://eudml.org/doc/267812.
Guo, Krystal, and Bojan Mohar. ‘Hermitian Adjacency Matrix of Digraphs and Mixed Graphs’. Journal of Graph Theory 85, no. 1 (May 2017): 217–48. tools:::Rd_expr_doi("10.1002/jgt.22057") .