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