Package weka.gui.visualize.plugins
Class ThresholdCurves
- java.lang.Object
-
- weka.gui.visualize.plugins.ThresholdCurves
-
- All Implemented Interfaces:
weka.gui.visualize.plugins.VisualizePlugin
public class ThresholdCurves extends Object implements weka.gui.visualize.plugins.VisualizePlugin
Displays all the threshold curves (ROC) in a single plot.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Constructor Summary
Constructors Constructor Description ThresholdCurves()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDesignVersion()Get the specific version of Weka the class is designed for.StringgetMaxVersion()Get the maximum version of Weka, exclusive, the class is designed to work with.StringgetMinVersion()Get the minimum version of Weka, inclusive, the class is designed to work with.JMenuItemgetVisualizeMenuItem(ArrayList<weka.classifiers.evaluation.Prediction> preds, weka.core.Attribute classAtt)Get a JMenu or JMenuItem which contain action listeners that perform the visualization, using some but not necessarily all of the data.
-
-
-
Method Detail
-
getVisualizeMenuItem
public JMenuItem getVisualizeMenuItem(ArrayList<weka.classifiers.evaluation.Prediction> preds, weka.core.Attribute classAtt)
Get a JMenu or JMenuItem which contain action listeners that perform the visualization, using some but not necessarily all of the data. Exceptions thrown because of changes in Weka since compilation need to be caught by the implementer.- Specified by:
getVisualizeMenuItemin interfaceweka.gui.visualize.plugins.VisualizePlugin- Parameters:
preds- predictionsclassAtt- class attribute- Returns:
- menuitem for opening visualization(s), or null to indicate no visualization is applicable for the input
- See Also:
NoClassDefFoundError,IncompatibleClassChangeError
-
getMinVersion
public String getMinVersion()
Get the minimum version of Weka, inclusive, the class is designed to work with. eg:3.5.0- Specified by:
getMinVersionin interfaceweka.gui.visualize.plugins.VisualizePlugin- Returns:
- the minimum version
-
getMaxVersion
public String getMaxVersion()
Get the maximum version of Weka, exclusive, the class is designed to work with. eg:3.6.0- Specified by:
getMaxVersionin interfaceweka.gui.visualize.plugins.VisualizePlugin- Returns:
- the maximum version
-
getDesignVersion
public String getDesignVersion()
Get the specific version of Weka the class is designed for. eg:3.5.1- Specified by:
getDesignVersionin interfaceweka.gui.visualize.plugins.VisualizePlugin- Returns:
- the version the plugin was designed for
-
-