@graphty/algorithms / index / EigenvectorCentralityOptions
Interface: EigenvectorCentralityOptions ​
Defined in: algorithms/centrality/eigenvector.ts:15
Eigenvector centrality implementation
Measures the influence of a node based on the influence of its neighbors. A node has high eigenvector centrality if it is connected to nodes that themselves have high eigenvector centrality.
Time complexity: O(V + E) per iteration Space complexity: O(V)
Extends ​
Properties ​
endpoints? ​
optionalendpoints:boolean
Defined in: types/index.ts:92
Inherited from ​
maxIterations? ​
optionalmaxIterations:number
Defined in: algorithms/centrality/eigenvector.ts:16
mode? ​
optionalmode:"in"|"out"|"total"
Defined in: types/index.ts:93
Inherited from ​
normalized? ​
optionalnormalized:boolean
Defined in: types/index.ts:91
Inherited from ​
startVector? ​
optionalstartVector:Map<string,number>
Defined in: algorithms/centrality/eigenvector.ts:18
tolerance? ​
optionaltolerance:number
Defined in: algorithms/centrality/eigenvector.ts:17