Class AdjacencyFn
java.lang.Object
edu.cmu.tetrad.algcomparison.statistic.AdjacencyFn
- All Implemented Interfaces:
Statistic
,Serializable
The adjacency precision. The true positives are the number of adjacencies in both the true and estimated graphs.
- Author:
- josephramsey
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the name of the statistic.Returns the description of the statistic.double
getNormValue
(double value) Returns a mapping of the statistic to the interval [0, 1], with higher being better.double
Returns the value of the statistic, given the true graph and the estimated graph.
-
Constructor Details
-
AdjacencyFn
public AdjacencyFn()Constructs the statistic.
-
-
Method Details
-
getAbbreviation
Returns the name of the statistic.- Specified by:
getAbbreviation
in interfaceStatistic
- Returns:
- The name.
-
getDescription
Returns the description of the statistic.- Specified by:
getDescription
in interfaceStatistic
- Returns:
- The description.
-
getValue
Returns the value of the statistic, given the true graph and the estimated graph. -
getNormValue
public double getNormValue(double value) Returns a mapping of the statistic to the interval [0, 1], with higher being better. This is used for a calculation of a utility for an algorithm.If the statistic is already between 0 and 1, you can just return the statistic.- Specified by:
getNormValue
in interfaceStatistic
- Parameters:
value
- The value of the statistic.- Returns:
- The weight of the statistic, 0 to 1, higher is better.
-