Constructor | Description |
|
|
Static member | Description |
Full Usage:
ClosenessCentrality.computWithEdgeDataBy (weightF, graph)
Parameters:
'EdgeData -> float
graph : FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.compute graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.compute graph
Parameters:
FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.computeNormalised graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.computeNormalised graph
Parameters:
FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.computeNormalisedWithEdgeData graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, float>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.computeNormalisedWithEdgeData graph
Parameters:
FGraph<'NodeKey, 'NodeData, float>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.computeNormalisedWithEdgeDataBy (weightF, graph)
Parameters:
'EdgeData -> float
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.computeNormalisedWithEdgeDataBy (weightF, graph)
Parameters:
'EdgeData -> float
graph : FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.computeWithEdgeData graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, float>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.computeWithEdgeData graph
Parameters:
FGraph<'NodeKey, 'NodeData, float>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.computeWithEdgeDataBy (weightF, graph)
Parameters:
'EdgeData -> float
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.ofAdjGraph getEdgeWeightF graph
Parameters:
'EdgeData -> float
-
Function to get the edgeweight out of the 'EdgeData
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.ofAdjGraphNode getEdgeWeightF graph nodeKey
Parameters:
'EdgeData -> float
-
Function to get the edgeweight out of the 'EdgeData
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
nodeKey : 'NodeKey
-
The NodeKey to get the Eccentricity of
Returns: float
A float of the ClosenessCentrality of the given node
|
|
Full Usage:
ClosenessCentrality.ofAdjGraphNodeNormalised getEdgeWeightF graph nodeKey
Parameters:
'EdgeData -> float
-
Function to get the edgeweight out of the 'EdgeData
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
nodeKey : 'NodeKey
-
The NodeKey to get the Eccentricity of
Returns: float
A float of the ClosenessCentrality of the given node
|
|
Full Usage:
ClosenessCentrality.ofAdjGraphNormalised getEdgeWeightF graph
Parameters:
'EdgeData -> float
-
Function to get the edgeweight out of the 'EdgeData
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.ofFGraph getEdgeWeightF graph
Parameters:
'EdgeData -> float
-
Function to get the edgeweight out of the 'EdgeData
graph : FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|
Full Usage:
ClosenessCentrality.ofFGraphNode getEdgeWeightF graph nodeKey
Parameters:
'EdgeData -> float
-
Function to get the edgeweight out of the 'EdgeData
graph : FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
nodeKey : 'NodeKey
-
The NodeKey to get the Eccentricity of
Returns: float
A float of the ClosenessCentrality of the given node
|
|
Full Usage:
ClosenessCentrality.ofFGraphNodeNormalised getEdgeWeightF graph nodeKey
Parameters:
'EdgeData -> float
-
Function to get the edgeweight out of the 'EdgeData
graph : FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
nodeKey : 'NodeKey
-
The NodeKey to get the Eccentricity of
Returns: float
A float of the ClosenessCentrality of the given node
|
|
Full Usage:
ClosenessCentrality.ofFGraphNormalised getEdgeWeightF graph
Parameters:
'EdgeData -> float
-
Function to get the edgeweight out of the 'EdgeData
graph : FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: Dictionary<'NodeKey, float>
A float of the ClosenessCentrality of all nodes in the given graph
|
|