Class TrueDagFalsePositiveTails

java.lang.Object
edu.cmu.tetrad.algcomparison.statistic.TrueDagFalsePositiveTails
All Implemented Interfaces:
Statistic, Serializable

public class TrueDagFalsePositiveTails extends Object implements Statistic
TrueDagFalsePositiveTails is a class that implements the Statistic interface. It calculates the number of false positives for tails in the estimated graph compared to the true DAG.
See Also:
  • Constructor Details

    • TrueDagFalsePositiveTails

      public TrueDagFalsePositiveTails()
      Constructs a new TrueDagFalsePositiveTails object.
  • Method Details

    • getAbbreviation

      public String getAbbreviation()
      Returns the abbreviation for the statistic. This will be printed at the top of each column.
      Specified by:
      getAbbreviation in interface Statistic
      Returns:
      The abbreviation.
    • getDescription

      public String getDescription()
      Returns a short one-line description of this statistic. This will be printed at the beginning of the report.
      Specified by:
      getDescription in interface Statistic
      Returns:
      The description of the statistic.
    • getValue

      public double getValue(Graph trueGraph, Graph estGraph, DataModel dataModel)
      Calculates the number of false positives for tails in the estimated graph compared to the true DAG.
      Specified by:
      getValue in interface Statistic
      Parameters:
      trueGraph - The true graph (DAG, CPDAG, PAG_of_the_true_DAG).
      estGraph - The estimated graph (same type).
      dataModel - The data model.
      Returns:
      The number of false positives for tails.
    • getNormValue

      public double getNormValue(double value)
      Calculates the normalized value of a statistic.
      Specified by:
      getNormValue in interface Statistic
      Parameters:
      value - The value of the statistic.
      Returns:
      The normalized value.