Yields eigenvector centrality as a number between 0.0-1.0.
(self)
| 127 | |
| 128 | @property |
| 129 | def weight(self): |
| 130 | """ Yields eigenvector centrality as a number between 0.0-1.0. |
| 131 | """ |
| 132 | if self.graph and self._weight is None: |
| 133 | self.graph.eigenvector_centrality() |
| 134 | return self._weight |
| 135 | |
| 136 | @property |
| 137 | def centrality(self): |
nothing calls this directly
no test coverage detected