public class Sig
extends java.lang.Object
This class provides "one stop shopping" for point probabilities percentage points for commonly used statistical distributions. These include the Beta, F, t, chi-square, and normal distributions. Both the forward (probability) and inverse (percentage point) functions are provided. This class is actually just provides a shim to the methods in the individual classes for each distribution.
Point probability routines
Inverse distributions (percentage points)
Modifier | Constructor and Description |
---|---|
protected |
Sig()
Make class non-instantiable but inheritable.
|
Modifier and Type | Method and Description |
---|---|
static double |
bonferroni(double p,
int n) |
static double |
chisquare(double chiSquare,
double df) |
static double |
chisquare(double chiSquare,
int df) |
static double |
chisquareInverse(double p,
double df) |
static double |
chisquareInverse(double p,
int df) |
static double |
f(double f,
double dfn,
double dfd) |
static double |
f(double f,
int dfn,
int dfd) |
static double |
fInverse(double p,
double dfn,
double dfd) |
static double |
fInverse(double p,
int dfn,
int dfd) |
static double |
normal(double z) |
static double |
normalInverse(double p) |
static double |
sidak(double p,
int n) |
static double |
t(double t,
double df) |
static double |
t(double t,
int df) |
static double |
tInverse(double p,
double df) |
static double |
tInverse(double p,
int df) |
public static double chisquare(double chiSquare, double df)
public static double chisquare(double chiSquare, int df)
public static double chisquareInverse(double p, double df)
public static double chisquareInverse(double p, int df)
public static double f(double f, double dfn, double dfd)
public static double f(double f, int dfn, int dfd)
public static double fInverse(double p, double dfn, double dfd)
public static double fInverse(double p, int dfn, int dfd)
public static double normal(double z)
public static double normalInverse(double p)
public static double t(double t, double df)
public static double t(double t, int df)
public static double tInverse(double p, double df)
public static double tInverse(double p, int df)
public static double sidak(double p, int n)
public static double bonferroni(double p, int n)