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 SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionRetrieves the abbreviation for the statistic.Returns a short one-line description of this statistic.doublegetNormValue(double value) Retrieves the normalized value of the statistic.doublegetValue(Graph trueGraph, Graph estGraph, DataModel dataModel, Parameters parameters) Calculates the F1 statistic for adjacencies.
- 
Constructor Details- 
SemidirectedPathF1public SemidirectedPathF1()Constructs the statistic.
 
- 
- 
Method Details- 
getAbbreviationRetrieves the abbreviation for the statistic.- Specified by:
- getAbbreviationin interface- Statistic
- Returns:
- The abbreviation for the statistic.
 
- 
getDescriptionReturns a short one-line description of this statistic. This will be printed at the beginning of the report.- Specified by:
- getDescriptionin interface- Statistic
- Returns:
- A string representing the description of this statistic.
 
- 
getValueCalculates the F1 statistic for adjacencies. Seehttps://en.wikipedia.org/wiki/F1_score We use what's on this page called the "traditional" F1 statistic. 
- 
getNormValuepublic double getNormValue(double value) Retrieves the normalized value of the statistic.- Specified by:
- getNormValuein interface- Statistic
- Parameters:
- value- The value of the statistic.
- Returns:
- The normalized value of the statistic.
 
 
-