Class SemidirectedPathF1
java.lang.Object
edu.cmu.tetrad.algcomparison.statistic.SemidirectedPathF1
- All Implemented Interfaces:
Statistic
,Serializable
Calculates the F1 statistic for adjacencies. See
https://en.wikipedia.org/wiki/F1_score
We use what's on this page called the "traditional" F1 statistic.
- Version:
- $Id: $Id
- Author:
- Joseh Ramsey
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionRetrieves the abbreviation for the statistic.Returns a short one-line description of this statistic.double
getNormValue
(double value) Retrieves the normalized value of the statistic.double
Calculates the F1 statistic for adjacencies.
-
Constructor Details
-
SemidirectedPathF1
public SemidirectedPathF1()Constructs the statistic.
-
-
Method Details
-
getAbbreviation
Retrieves the abbreviation for the statistic.- Specified by:
getAbbreviation
in interfaceStatistic
- Returns:
- The abbreviation for the statistic.
-
getDescription
Returns a short one-line description of this statistic. This will be printed at the beginning of the report.- Specified by:
getDescription
in interfaceStatistic
- Returns:
- A string representing the description of this statistic.
-
getValue
Calculates the F1 statistic for adjacencies. Seehttps://en.wikipedia.org/wiki/F1_score
We use what's on this page called the "traditional" F1 statistic.
-
getNormValue
public double getNormValue(double value) Retrieves the normalized value of the statistic.- Specified by:
getNormValue
in interfaceStatistic
- Parameters:
value
- The value of the statistic.- Returns:
- The normalized value of the statistic.
-