Constructor | Description |
|
|
Static member | Description |
Full Usage:
OutDegree.average graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: float
A float of the mean out-degree
|
Get the mean out-degree of the graph. This is an undirected measure so inbound links add to a nodes out-degree.
|
Full Usage:
OutDegree.average graph
Parameters:
FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: float
A float of the mean out-degree
|
Get the mean out-degree of the graph. This is an undirected measure so inbound links add to a nodes out-degree.
|
Full Usage:
OutDegree.average graph
Parameters:
DiGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: float
A float of the mean out-degree
|
Get the mean out-degree of the graph. This is an undirected measure so inbound links add to a nodes out-degree.
|
Full Usage:
OutDegree.averageofAdjGraph graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: float
A float of the mean out-degree
|
Get the mean out-degree of the graph. This is an undirected measure so inbound links add to a nodes out-degree.
|
Full Usage:
OutDegree.averageofDiGraph graph
Parameters:
DiGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: float
A float of the mean out-degree
|
Get the mean out-degree of the graph. This is an undirected measure so inbound links add to a nodes out-degree.
|
Full Usage:
OutDegree.averageofFGraph graph
Parameters:
FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: float
A float of the mean out-degree
|
Get the mean out-degree of the graph. This is an undirected measure so inbound links add to a nodes out-degree.
|
Full Usage:
OutDegree.maximum graph
Parameters:
DiGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int
An int of the max out-degree
|
|
Full Usage:
OutDegree.maximum graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int
An int of the max out-degree
|
|
Full Usage:
OutDegree.maximum graph
Parameters:
FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int
An int of the max out-degree
|
|
Full Usage:
OutDegree.maximumOfAdjGraph graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int
An int of the max out-degree
|
|
Full Usage:
OutDegree.maximumOfDiGraph graph
Parameters:
DiGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int
An int of the max out-degree
|
|
Full Usage:
OutDegree.maximumOfFGraph graph
Parameters:
FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int
An int of the max out-degree
|
|
Full Usage:
OutDegree.minimum graph
Parameters:
DiGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int
An int of the min out-degree
|
|
Full Usage:
OutDegree.minimum graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int
An int of the min out-degree
|
|
Full Usage:
OutDegree.minimum graph
Parameters:
FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int
An int of the min out-degree
|
|
Full Usage:
OutDegree.minimumOfAdjGraph graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int
An int of the max out-degree
|
|
Full Usage:
OutDegree.minimumOfDiGraph graph
Parameters:
DiGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int
An int of the min out-degree
|
|
Full Usage:
OutDegree.minimumOfFGraph graph
Parameters:
FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int
An int of the min out-degree
|
|
Full Usage:
OutDegree.sequence graph
Parameters:
DiGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int[]
An array of out-degree values in descending order
|
|
Full Usage:
OutDegree.sequence graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: seq<float>
A float seq of out-degree values
|
|
Full Usage:
OutDegree.sequence graph
Parameters:
FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: seq<float>
A float seq of out-degree values
|
|
Full Usage:
OutDegree.sequenceOfAdjGraph graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: seq<float>
A float seq of out-degree values
|
|
Full Usage:
OutDegree.sequenceOfDiGraph graph
Parameters:
DiGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: int[]
An array of out-degree values in descending order
|
|
Full Usage:
OutDegree.sequenceOfFGraph graph
Parameters:
FGraph<'NodeKey, 'NodeData, 'EdgeData>
-
The graph to be analysed
Returns: seq<float>
A float seq of out-degree values
|
|