public interface ROC
| Modifier and Type | Method and Description |
|---|---|
double |
getAuc()
Returns an estimation of the area under the curve.
|
double |
getSpecificityAt(double sensitivity)
Returns the 1-specificity at a given sensitivity.
|
double |
getValueAt(double specificity)
Returns the sensitivity at a given 1-specificity, i.e., 1-type 2 error,
the number of true healthy for a given type 1 error, the number of false
healthy.
|
double[][] |
getxYValues()
Returns xy values to draw the curve.
|
double getValueAt(double specificity)
throws org.apache.commons.math.MathException
specificity - the specificity (0.1 is 10%)org.apache.commons.math.MathException - if a MathException occursdouble getSpecificityAt(double sensitivity)
throws org.apache.commons.math.MathException
sensitivity - the sensitivity (0.1 is 10%)org.apache.commons.math.MathException - if a MathException occursdouble[][] getxYValues()
throws org.apache.commons.math.MathException
org.apache.commons.math.MathException - if a MathException occursdouble getAuc()
throws org.apache.commons.math.MathException
org.apache.commons.math.MathException - if a MathException occursCopyright © 2016. All rights reserved.