use of edu.cmu.tetrad.algcomparison.statistic.F1Arrow in project tetrad by cmu-phil.
the class TimeoutComparisonTest method getStatistics.
private static Statistics getStatistics() {
Statistics statistics = new Statistics();
statistics.add(new AdjacencyPrecision());
statistics.add(new AdjacencyRecall());
statistics.add(new ArrowheadPrecision());
statistics.add(new ArrowheadRecall());
statistics.add(new MathewsCorrAdj());
statistics.add(new MathewsCorrArrow());
statistics.add(new F1Adj());
statistics.add(new F1Arrow());
statistics.add(new SHD());
statistics.add(new ElapsedTime());
return statistics;
}
Also used :
ArrowheadRecall(edu.cmu.tetrad.algcomparison.statistic.ArrowheadRecall)
MathewsCorrArrow(edu.cmu.tetrad.algcomparison.statistic.MathewsCorrArrow)
ArrowheadPrecision(edu.cmu.tetrad.algcomparison.statistic.ArrowheadPrecision)
AdjacencyRecall(edu.cmu.tetrad.algcomparison.statistic.AdjacencyRecall)
F1Arrow(edu.cmu.tetrad.algcomparison.statistic.F1Arrow)
ElapsedTime(edu.cmu.tetrad.algcomparison.statistic.ElapsedTime)
AdjacencyPrecision(edu.cmu.tetrad.algcomparison.statistic.AdjacencyPrecision)
MathewsCorrAdj(edu.cmu.tetrad.algcomparison.statistic.MathewsCorrAdj)
Statistics(edu.cmu.tetrad.algcomparison.statistic.Statistics)
F1Adj(edu.cmu.tetrad.algcomparison.statistic.F1Adj)
SHD(edu.cmu.tetrad.algcomparison.statistic.SHD)