jas.graph.statistics
Class VertexStatComputer

java.lang.Object
  extended by jas.graph.statistics.VertexStatComputer
All Implemented Interfaces:
IDoubleSource, IIntSource

public class VertexStatComputer
extends java.lang.Object
implements IDoubleSource, IIntSource

Author:
Riccardo Boero

Field Summary
static int F_BETWEENNESS
          Return the vertex betweenness.
static int F_ECCENTRICITY
          Return the vertex eccentricity.
static int F_GLOBAL_CENTRALITY
          Return the vertex global centrality.
static int F_GLOBAL_CENTRALITY_CORRECTED
          Return the vertex global centrality corrected, inspired by Bonacich '72 and corrected with the degree value.
static int F_GLOBAL_CENTRALITY_WEIGHTED_CORRECTED
          Return the vertex global centrality weighted & corrected, inspired by Bonacich '72 and corrected with the degree value.
static int F_GLOBAL_INCENTRALITY
          Return the vertex global incentrality.
static int F_GLOBAL_INCENTRALITY_CORRECTED
          Return the vertex global centrality corrected, inspired by Bonacich '72 and corrected with the indegree value.
static int F_GLOBAL_INCENTRALITY_WEIGHTED_CORRECTED
          Return the vertex global centrality weighted & corrected, inspired by Bonacich '72 and corrected with the indegree value.
static int F_GLOBAL_OUTCENTRALITY
          Return the vertex global outcentrality.
static int F_GLOBAL_OUTCENTRALITY_CORRECTED
          Return the vertex global centrality corrected, inspired by Bonacich '72 and corrected with the outdegree value.
static int F_GLOBAL_OUTCENTRALITY_WEIGHTED_CORRECTED
          Return the vertex global centrality weighted & corrected, inspired by Bonacich '72 and corrected with the outdegree value.
static int F_GLOBAL_WEIGHTED_CENTRALITY
          Return the vertex global weighted centrality.
static int F_GLOBAL_WEIGHTED_INCENTRALITY
          Return the vertex global weighted incentrality.
static int F_GLOBAL_WEIGHTED_OUTCENTRALITY
          Return the vertex global weighted outcentrality.
static int F_INECCENTRICITY
          Return the vertex eccentricity.
static int F_LOCAL_CENTRALITY_DEGREE_ABS
          Return the vertex absolute local centrality (the degree).
static int F_LOCAL_CENTRALITY_DEGREE_ABS_2
          Return the vertex absolute local centrality (the degree with 2 edges path).
static int F_LOCAL_CENTRALITY_DEGREE_REL
          Return the vertex relative local centrality (the degree).
static int F_LOCAL_CENTRALITY_INDEGREE_ABS
          Return the vertex absolute local centrality (the indegree).
static int F_LOCAL_CENTRALITY_INDEGREE_ABS_2
          Return the vertex absolute local centrality (the indegree with 2 edges path).
static int F_LOCAL_CENTRALITY_INDEGREE_REL
          Return the vertex relative local centrality (the indegree).
static int F_LOCAL_CENTRALITY_OUTDEGREE_ABS
          Return the vertex absolute local centrality (the outdegree).
static int F_LOCAL_CENTRALITY_OUTDEGREE_ABS_2
          Return the vertex absolute local centrality (the outdegree with 2 edges path).
static int F_LOCAL_CENTRALITY_OUTDEGREE_REL
          Return the vertex relative local centrality (the outdegree).
static int F_LOCAL_CENTRALITY_WEIGHTED_DEGREE
          Return the vertex weighted local centrality (the weighted degree).
static int F_LOCAL_CENTRALITY_WEIGHTED_INDEGREE
          Return the vertex weighted local centrality (the weighted indegree).
static int F_LOCAL_CENTRALITY_WEIGHTED_OUTDEGREE
          Return the vertex weighted local centrality (the weighted outdegree).
static int F_OUTECCENTRICITY
          Return the vertex eccentricity.
static java.lang.String[] labels
           
 
Fields inherited from interface jas.statistics.IDoubleSource
DEFAULT
 
Fields inherited from interface jas.statistics.IIntSource
DEFAULT
 
Constructor Summary
VertexStatComputer(IRelationalAgent vertex)
           
 
Method Summary
 double fBetweenness()
           
 int fEccentricity()
           
 double fGlobalCentrality()
           
 double fGlobalCentralityCorrected()
           
 double fGlobalCentralityWeightedCorrected()
           
 double fGlobalInCentrality()
           
 double fGlobalInCentralityCorrected()
           
 double fGlobalInCentralityWeightedCorrected()
           
 double fGlobalOutCentrality()
           
 double fGlobalOutCentralityCorrected()
           
 double fGlobalOutCentralityWeightedCorrected()
           
 double fGlobalWeightedCentrality()
           
 double fGlobalWeightedInCentrality()
           
 double fGlobalWeightedOutCentrality()
           
 int fInEccentricity()
           
 double fLocalCentralityDegreeAbs()
           
 double fLocalCentralityDegreeAbs2()
           
 double fLocalCentralityDegreeRel()
           
 int fLocalCentralityInDegreeAbs()
           
 int fLocalCentralityInDegreeAbs2()
           
 double fLocalCentralityInDegreeRel()
           
 int fLocalCentralityOutDegreeAbs()
           
 int fLocalCentralityOutDegreeAbs2()
           
 double fLocalCentralityOutDegreeRel()
           
 double fLocalCentralityWeightedDegree()
           
 double fLocalCentralityWeightedInDegree()
           
 double fLocalCentralityWeightedOutDegree()
           
 int fOutEccentricity()
           
 double getDoubleValue(int valueID)
          Return the double value corresponding to the given variableID
 int getIntValue(int variableID)
          Return the integer value corresponding to the given variableID
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

F_BETWEENNESS

public static final int F_BETWEENNESS
Return the vertex betweenness.

See Also:
Constant Field Values

F_ECCENTRICITY

public static final int F_ECCENTRICITY
Return the vertex eccentricity.

See Also:
Constant Field Values

F_GLOBAL_CENTRALITY

public static final int F_GLOBAL_CENTRALITY
Return the vertex global centrality.

See Also:
Constant Field Values

F_GLOBAL_CENTRALITY_CORRECTED

public static final int F_GLOBAL_CENTRALITY_CORRECTED
Return the vertex global centrality corrected, inspired by Bonacich '72 and corrected with the degree value.

See Also:
Constant Field Values

F_GLOBAL_CENTRALITY_WEIGHTED_CORRECTED

public static final int F_GLOBAL_CENTRALITY_WEIGHTED_CORRECTED
Return the vertex global centrality weighted & corrected, inspired by Bonacich '72 and corrected with the degree value.

See Also:
Constant Field Values

F_GLOBAL_INCENTRALITY

public static final int F_GLOBAL_INCENTRALITY
Return the vertex global incentrality.

See Also:
Constant Field Values

F_GLOBAL_INCENTRALITY_CORRECTED

public static final int F_GLOBAL_INCENTRALITY_CORRECTED
Return the vertex global centrality corrected, inspired by Bonacich '72 and corrected with the indegree value.

See Also:
Constant Field Values

F_GLOBAL_INCENTRALITY_WEIGHTED_CORRECTED

public static final int F_GLOBAL_INCENTRALITY_WEIGHTED_CORRECTED
Return the vertex global centrality weighted & corrected, inspired by Bonacich '72 and corrected with the indegree value.

See Also:
Constant Field Values

F_GLOBAL_OUTCENTRALITY

public static final int F_GLOBAL_OUTCENTRALITY
Return the vertex global outcentrality.

See Also:
Constant Field Values

F_GLOBAL_OUTCENTRALITY_CORRECTED

public static final int F_GLOBAL_OUTCENTRALITY_CORRECTED
Return the vertex global centrality corrected, inspired by Bonacich '72 and corrected with the outdegree value.

See Also:
Constant Field Values

F_GLOBAL_OUTCENTRALITY_WEIGHTED_CORRECTED

public static final int F_GLOBAL_OUTCENTRALITY_WEIGHTED_CORRECTED
Return the vertex global centrality weighted & corrected, inspired by Bonacich '72 and corrected with the outdegree value.

See Also:
Constant Field Values

F_GLOBAL_WEIGHTED_CENTRALITY

public static final int F_GLOBAL_WEIGHTED_CENTRALITY
Return the vertex global weighted centrality.

See Also:
Constant Field Values

F_GLOBAL_WEIGHTED_INCENTRALITY

public static final int F_GLOBAL_WEIGHTED_INCENTRALITY
Return the vertex global weighted incentrality.

See Also:
Constant Field Values

F_GLOBAL_WEIGHTED_OUTCENTRALITY

public static final int F_GLOBAL_WEIGHTED_OUTCENTRALITY
Return the vertex global weighted outcentrality.

See Also:
Constant Field Values

F_INECCENTRICITY

public static final int F_INECCENTRICITY
Return the vertex eccentricity.

See Also:
Constant Field Values

F_LOCAL_CENTRALITY_DEGREE_ABS

public static final int F_LOCAL_CENTRALITY_DEGREE_ABS
Return the vertex absolute local centrality (the degree).

See Also:
Constant Field Values

F_LOCAL_CENTRALITY_DEGREE_ABS_2

public static final int F_LOCAL_CENTRALITY_DEGREE_ABS_2
Return the vertex absolute local centrality (the degree with 2 edges path).

See Also:
Constant Field Values

F_LOCAL_CENTRALITY_DEGREE_REL

public static final int F_LOCAL_CENTRALITY_DEGREE_REL
Return the vertex relative local centrality (the degree).

See Also:
Constant Field Values

F_LOCAL_CENTRALITY_INDEGREE_ABS

public static final int F_LOCAL_CENTRALITY_INDEGREE_ABS
Return the vertex absolute local centrality (the indegree).

See Also:
Constant Field Values

F_LOCAL_CENTRALITY_INDEGREE_ABS_2

public static final int F_LOCAL_CENTRALITY_INDEGREE_ABS_2
Return the vertex absolute local centrality (the indegree with 2 edges path).

See Also:
Constant Field Values

F_LOCAL_CENTRALITY_INDEGREE_REL

public static final int F_LOCAL_CENTRALITY_INDEGREE_REL
Return the vertex relative local centrality (the indegree).

See Also:
Constant Field Values

F_LOCAL_CENTRALITY_OUTDEGREE_ABS

public static final int F_LOCAL_CENTRALITY_OUTDEGREE_ABS
Return the vertex absolute local centrality (the outdegree).

See Also:
Constant Field Values

F_LOCAL_CENTRALITY_OUTDEGREE_ABS_2

public static final int F_LOCAL_CENTRALITY_OUTDEGREE_ABS_2
Return the vertex absolute local centrality (the outdegree with 2 edges path).

See Also:
Constant Field Values

F_LOCAL_CENTRALITY_OUTDEGREE_REL

public static final int F_LOCAL_CENTRALITY_OUTDEGREE_REL
Return the vertex relative local centrality (the outdegree).

See Also:
Constant Field Values

F_LOCAL_CENTRALITY_WEIGHTED_DEGREE

public static final int F_LOCAL_CENTRALITY_WEIGHTED_DEGREE
Return the vertex weighted local centrality (the weighted degree).

See Also:
Constant Field Values

F_LOCAL_CENTRALITY_WEIGHTED_INDEGREE

public static final int F_LOCAL_CENTRALITY_WEIGHTED_INDEGREE
Return the vertex weighted local centrality (the weighted indegree).

See Also:
Constant Field Values

F_LOCAL_CENTRALITY_WEIGHTED_OUTDEGREE

public static final int F_LOCAL_CENTRALITY_WEIGHTED_OUTDEGREE
Return the vertex weighted local centrality (the weighted outdegree).

See Also:
Constant Field Values

F_OUTECCENTRICITY

public static final int F_OUTECCENTRICITY
Return the vertex eccentricity.

See Also:
Constant Field Values

labels

public static final java.lang.String[] labels
Constructor Detail

VertexStatComputer

public VertexStatComputer(IRelationalAgent vertex)
Parameters:
vertex -
Method Detail

fBetweenness

public double fBetweenness()
Returns:

fEccentricity

public int fEccentricity()
Returns:

fGlobalCentrality

public double fGlobalCentrality()
Returns:

fGlobalCentralityCorrected

public double fGlobalCentralityCorrected()
Returns:

fGlobalCentralityWeightedCorrected

public double fGlobalCentralityWeightedCorrected()
Returns:

fGlobalInCentrality

public double fGlobalInCentrality()
Returns:

fGlobalInCentralityCorrected

public double fGlobalInCentralityCorrected()
Returns:

fGlobalInCentralityWeightedCorrected

public double fGlobalInCentralityWeightedCorrected()
Returns:

fGlobalOutCentrality

public double fGlobalOutCentrality()
Returns:

fGlobalOutCentralityCorrected

public double fGlobalOutCentralityCorrected()
Returns:

fGlobalOutCentralityWeightedCorrected

public double fGlobalOutCentralityWeightedCorrected()
Returns:

fGlobalWeightedCentrality

public double fGlobalWeightedCentrality()
Returns:

fGlobalWeightedInCentrality

public double fGlobalWeightedInCentrality()
Returns:

fGlobalWeightedOutCentrality

public double fGlobalWeightedOutCentrality()
Returns:

fInEccentricity

public int fInEccentricity()
Returns:

fLocalCentralityDegreeAbs

public double fLocalCentralityDegreeAbs()
Returns:

fLocalCentralityDegreeAbs2

public double fLocalCentralityDegreeAbs2()
Returns:

fLocalCentralityDegreeRel

public double fLocalCentralityDegreeRel()
Returns:

fLocalCentralityInDegreeAbs

public int fLocalCentralityInDegreeAbs()
Returns:

fLocalCentralityInDegreeAbs2

public int fLocalCentralityInDegreeAbs2()
Returns:

fLocalCentralityInDegreeRel

public double fLocalCentralityInDegreeRel()
Returns:

fLocalCentralityOutDegreeAbs

public int fLocalCentralityOutDegreeAbs()
Returns:

fLocalCentralityOutDegreeAbs2

public int fLocalCentralityOutDegreeAbs2()
Returns:

fLocalCentralityOutDegreeRel

public double fLocalCentralityOutDegreeRel()
Returns:

fLocalCentralityWeightedDegree

public double fLocalCentralityWeightedDegree()
Returns:

fLocalCentralityWeightedInDegree

public double fLocalCentralityWeightedInDegree()
Returns:

fLocalCentralityWeightedOutDegree

public double fLocalCentralityWeightedOutDegree()
Returns:

fOutEccentricity

public int fOutEccentricity()
Returns:

getDoubleValue

public double getDoubleValue(int valueID)
Description copied from interface: IDoubleSource
Return the double value corresponding to the given variableID

Specified by:
getDoubleValue in interface IDoubleSource
Parameters:
valueID - A unique identifier for a variable.
Returns:
The current double value of the required variable.

getIntValue

public int getIntValue(int variableID)
Description copied from interface: IIntSource
Return the integer value corresponding to the given variableID

Specified by:
getIntValue in interface IIntSource
Parameters:
variableID - A unique identifier for a variable.
Returns:
The current integer value of the required variable.