Package moa.gui.experimentertab
Class Algorithm
- java.lang.Object
-
- moa.gui.experimentertab.Algorithm
-
public class Algorithm extends Object
This class calculates the different measures for each algorithm- Author:
- Alberto Verdecia Cabrera (averdeciac@gmail.com)
-
-
Field Summary
Fields Modifier and Type Field Description BufferedReader
buffer
The results file for the algorithmList<Measure>
measures
The list of measures per algorithmint
measureStdSize
The same size that the measure listString
name
The name of the algorithmsString
path
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Measure>[]
getMeasuresPerData(List<Stream> stream)
Returns a list of measures per dataset.
-
-
-
Field Detail
-
name
public String name
The name of the algorithms
-
path
public String path
-
buffer
public BufferedReader buffer
The results file for the algorithm
-
measureStdSize
public int measureStdSize
The same size that the measure list
-
-
Constructor Detail
-
Algorithm
public Algorithm(String name, List<Measure> measures, BufferedReader buffer, String path)
Algorithm constructor- Parameters:
name
-measures
-buffer
-path
-
-
-