The Multiple Local Attributes Weighted Centrality (LWC) is an extension of the MABIE framework [2] that incorporates local structural information to evaluate node importance in complex networks [3]. LWC integrates four local metrics: the degree, two-hop degree, clustering coefficient and two-hop clustering coefficient (the sum of the clustering coefficients of a node's neighbors).
For a network with \(N\) nodes, LWC constructs an \(N \times 4\) decision matrix
\[
R =
\begin{bmatrix}
r_{11} & r_{12} & r_{13} & r_{14} \\
r_{21} & r_{22} & r_{23} & r_{24} \\
\vdots & \vdots & \vdots & \vdots \\
r_{N1} & r_{N2} & r_{N3} & r_{N4} \\
\end{bmatrix},
\]
where \(r_{ij} = \frac{c_j(i)}{\sum_{k=1}^N c_j(k)}\) and \(c_j(i)\) denotes the \(j\)-th local attribute of node \(i\).
The information entropy of each attribute is computed as
\[
E_j = -\frac{1}{\ln N} \sum_{i=1}^N r_{ij} \ln r_{ij},
\]
which quantifies the discriminative power of the \(j\)-th metric. Lower entropy values indicate greater variability among nodes and stronger ability to distinguish influential nodes.
The LWC centrality of node \(i\) is then defined as a weighted sum of the normalized attributes:
\[
c_{\mathrm{LWC}}(i) = \sum_{j=1}^{4} w_j r_{ij}, \quad
w_j = \frac{1 - E_j}{\sum_{k=1}^{4} (1 - E_k)},
\]
where \(w_j\) is the weight of the \(j\)-th attribute, computed from its entropy.
Nodes with high LWC values are those that simultaneously exhibit strong local connectivity and high structural influence in their immediate and extended neighborhoods, making them critical for spreading processes or network cohesion.

References

[1] Shvydun, S. (2025). Zoo of Centralities: Encyclopedia of Node Metrics in Complex Networks. arXiv: 2511.05122 https://doi.org/10.48550/arXiv.2511.05122
[2] Wenli, F., Zhigang, L., & Ping, H. (2013). Identifying node importance based on information entropy in complex networks. Physica Scripta, 88(6), 065201. doi: 10.1088/0031-8949/88/06/065201.
[3] Zhang, J., Zhang, Q., Wu, L., & Zhang, J. (2022). Identifying influential nodes in complex networks based on multiple local attributes and information entropy. Entropy, 24(2), 293. doi: 10.3390/e24020293.