Package moa.gui.experimentertab
Class Summary
- java.lang.Object
-
- moa.gui.experimentertab.Summary
-
public class Summary extends Object
This class performs the different summaries.- Author:
- Alberto Verdecia Cabrera (averdeciac@gmail.com).
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
computeWinsTiesLossesHTML(String path)
Generates a HTML summary that shows the gains, loses or ties of each algorithm against each other, in a specific measure..void
computeWinsTiesLossesLatex(String path)
Generates a latex summary that shows the gains, loses or ties of each algorithm against each other, in a specific measure..void
generateCSV()
Generate a csv file for the statistical analysis.void
generateHTML(String path)
Generates an HTML summary, in which the rows are the datasets and the columns the algorithms.void
generateLatex(String path)
Generates a latex summary, in which the rows are the algorithms and the columns the datasets.void
invertedSumariesPerMeasure(String path)
Generates a latex summary, in which the rows are the datasets and the columns the algorithms.SummaryTable[]
showSummary()
The summaries are performed for each measure to be displayed in the user interface
-
-
-
Field Detail
-
path
public String path
The path of the results
-
summary
public SummaryTable[] summary
-
-
Method Detail
-
generateLatex
public void generateLatex(String path)
Generates a latex summary, in which the rows are the algorithms and the columns the datasets.
-
invertedSumariesPerMeasure
public void invertedSumariesPerMeasure(String path)
Generates a latex summary, in which the rows are the datasets and the columns the algorithms.
-
showSummary
public SummaryTable[] showSummary()
The summaries are performed for each measure to be displayed in the user interface- Returns:
- SummaryTable
-
generateHTML
public void generateHTML(String path)
Generates an HTML summary, in which the rows are the datasets and the columns the algorithms.
-
computeWinsTiesLossesLatex
public void computeWinsTiesLossesLatex(String path)
Generates a latex summary that shows the gains, loses or ties of each algorithm against each other, in a specific measure..
-
generateCSV
public void generateCSV()
Generate a csv file for the statistical analysis.
-
computeWinsTiesLossesHTML
public void computeWinsTiesLossesHTML(String path)
Generates a HTML summary that shows the gains, loses or ties of each algorithm against each other, in a specific measure..
-
-