public class ShapiroWilkTest
extends java.lang.Object
Ported from original FORTRAN 77 code from the journal Applied Statistics published by the Royal Statistical Society and distributed by Carnegie Mellon University at http://lib.stat.cmu.edu/apstat/.
To help facilitate debugging and maintenance, this port has been changed as little as feasible from the original FORTRAN 77 code, to allow comparisons with the original. Variable names have been left alone when possible (except for capitalizing constants), and the logic flow (though translated and indented) is essentially unchanged.
The original FORTRAN source for these routines has been released by the Royal Statistical Society for free public distribution, and this Java implementation is released to the public domain.
Constructor and Description |
---|
ShapiroWilkTest() |
Modifier and Type | Method and Description |
---|---|
static ShapiroWilkTestResult |
swilk(java.util.List<java.lang.Double> d)
Runs the Shapiro-Wilk test
on a list of double values.
|
static ShapiroWilkTestResult |
test(double[] d) |
static ShapiroWilkTestResult |
test(java.util.List<java.lang.Double> d) |
public static ShapiroWilkTestResult test(java.util.List<java.lang.Double> d)
public static ShapiroWilkTestResult test(double[] d)
public static ShapiroWilkTestResult swilk(java.util.List<java.lang.Double> d)