Java Code Examples for weka.classifiers.evaluation.ThresholdCurve#PRECISION_NAME

The following examples show how to use weka.classifiers.evaluation.ThresholdCurve#PRECISION_NAME . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ShowMacroCurve.java    From meka with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Returns the name of the default Y column to display.
 *
 * @return              the name of the column
 */
protected String getDefaultYColumn() {
	return ThresholdCurve.PRECISION_NAME;
}
 
Example 2
Source File: ShowMicroCurve.java    From meka with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Returns the name of the default Y column to display.
 *
 * @return              the name of the column
 */
protected String getDefaultYColumn() {
	return ThresholdCurve.PRECISION_NAME;
}
 
Example 3
Source File: ShowPrecisionRecall.java    From meka with GNU General Public License v3.0 2 votes vote down vote up
/**
 * Returns the name of the default Y column to display.
 *
 * @return              the name of the column
 */
protected String getDefaultYColumn() {
	return ThresholdCurve.PRECISION_NAME;
}