Package elki.math.statistics.tests
Interface GoodnessOfFitTest
-
- All Known Implementing Classes:
KolmogorovSmirnovTest,StandardizedTwoSampleAndersonDarlingTest,WelchTTest
public interface GoodnessOfFitTestInterface for the statistical test used by HiCS.Consists of a single method that calculates the deviation between two data samples, given as arrays of double values.
Note that different measures may have very different scale!
- Since:
- 0.5.0
- Author:
- Jan Brusis, Erich Schubert
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doubledeviation(double[] full, double[] conditional)Measure the deviation of a full sample from a conditional sample.
-