| Package | flare.analytics.graph |
| Class | public class BetweennessCentrality |
| Inheritance | BetweennessCentrality Operator |
| Property | Defined by | ||
|---|---|---|---|
| centralityField : String The property in which to store the centrality score.
| BetweennessCentrality | ||
![]() | enabled : Boolean Indicates if the operator is enabled or disabled.
| Operator | |
| links : int = 3 Flag indicating the type of links to follow in the graph.
| BetweennessCentrality | ||
![]() | parameters : Object
Sets parameter values for this operator.
| Operator | |
![]() | visualization : Visualization
The visualization processed by this operator.
| Operator | |
| Method | Defined by | ||
|---|---|---|---|
|
Creates a new BetweennessCentrality operator.
| BetweennessCentrality | ||
![]() |
applyParameters(op:IOperator, params:Object):void
[static]
Static method that applies parameter settings to an operator.
| Operator | |
|
Calculates the betweenness centrality values for the given data set.
| BetweennessCentrality | ||
|
operate(t:Transitioner = null):void
Performs an operation over the contents of a visualization.
| BetweennessCentrality | ||
![]() |
setup():void
Setup method invoked whenever this operator's visualization
property is set.
| Operator | |
| centralityField | property |
centralityField:String [read-write]The property in which to store the centrality score. This property is used to annotate nodes with their betweenness centrality score. The default value is "props.centrality".
Implementation public function get centralityField():String
public function set centralityField(value:String):void
| links | property |
public var links:int = 3 Flag indicating the type of links to follow in the graph. The
default is NodeSprite.GRAPH_LINKS.
| BetweennessCentrality | () | constructor |
public function BetweennessCentrality()Creates a new BetweennessCentrality operator.
| calculate | () | method |
public function calculate(data:Data):voidCalculates the betweenness centrality values for the given data set.
Parametersdata:Data — the data set for which to compute centrality measures
|
| operate | () | method |
public override function operate(t:Transitioner = null):voidPerforms an operation over the contents of a visualization.
Parameterst:Transitioner (default = null) — a Transitioner instance for collecting value updates.
|