use of edu.cmu.tetrad.algcomparison.statistic.ArrowheadRecall 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;
}
Aggregations