|
JMSLTM Numerical Library 5.0.1 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.imsl.stat.ChiSquaredTest
public class ChiSquaredTest
Chi-squared goodness-of-fit test.
ChiSquaredTest
performs a chi-squared goodness-of-fit test
that a random sample of observations is distributed according to a specified
theoretical cumulative distribution. The theoretical distribution, which may
be continuous, discrete, or a mixture of discrete and continuous
distributions, is specified via a user-defined function F
where F implements CdfFuntion
. Because
the user is allowed to specify a range for the observations in the
setRange
method, a test that is conditional upon the specified
range is performed.
ChiSquaredTest
can be constructed in two different ways.
The intervals can be specified via the array cutpoints. Otherwise,
the number of cutpoints can be given and equiprobable intervals computed by
the constructor. The observations are divided into these intervals.
Regardless of the method used to obtain them, the intervals are such that
the lower endpoint is not included in the interval while the upper endpoint
is always included. The user should determine the cutpoints when the
cumulative distribution function has discrete elements since
ChiSquaredTest
cannot determine them in this case.
By default, the lower and upper endpoints of the first and last intervals
are and , respectively.
The method setRange
can be used to change the range.
A tally of counts is maintained for the observations in x as follows:
If the cutpoints are specified by the user, the tally is made in the interval to which belongs, using the user-specified endpoints.
If the cutpoints are determined by the class then the cumulative probability
at , , is computed using
cdf
.
The tally for is made in interval number , where m is the number of categories and is the function that takes the greatest integer that is no larger than the argument of the function. If the cutpoints are specified by the user, the tally is made in the interval to which belongs using the endpoints specified by the user. Thus, if the computer time required to calculate the cumulative distribution function is large, user-specified cutpoints may be preferred in order to reduce the total computing time.
If the expected count in any cell is less than 1, then a rule of thumb is that the chi-squared approximation may be suspect. A warning message to this effect is issued in this case, as well as when an expected value is less than 5.
Nested Class Summary | |
---|---|
static class |
ChiSquaredTest.DidNotConvergeException
The iteration did not converge |
static class |
ChiSquaredTest.NoObservationsException
There are no observations. |
static class |
ChiSquaredTest.NotCDFException
The function is not a Cumulative Distribution Function (CDF). |
Constructor Summary | |
---|---|
ChiSquaredTest(CdfFunction cdf,
double[] cutpoints,
int nParameters)
Constructor for the Chi-squared goodness-of-fit test. |
|
ChiSquaredTest(CdfFunction cdf,
int nCutpoints,
int nParameters)
Constructor for the Chi-squared goodness-of-fit test |
Method Summary | |
---|---|
double[] |
getCellCounts()
Returns the cell counts. |
double |
getChiSquared()
Returns the chi-squared statistic. |
double[] |
getCutpoints()
Returns the cutpoints. |
double |
getDegreesOfFreedom()
Returns the degrees of freedom in chi-squared. |
double[] |
getExpectedCounts()
Returns the expected counts. |
double |
getP()
Returns the p-value for the chi-squared statistic. |
void |
setCutpoints(double[] cutpoints)
Sets the cutpoints. |
void |
setRange(double lower,
double upper)
Sets endpoints of the range of the distribution. |
void |
update(double[] x,
double[] freq)
Adds new observations to the test. |
void |
update(double x,
double freq)
Adds a new observation to the test. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ChiSquaredTest(CdfFunction cdf, double[] cutpoints, int nParameters) throws ChiSquaredTest.NotCDFException
cdf
- a CdfFunction
object that implements the
CdfFunction interfacecutpoints
- a double
array containing the cutpointsnParameters
- an int
which specifies the number of
parameters estimated in computing the Cdf
ChiSquaredTest.NotCDFException
public ChiSquaredTest(CdfFunction cdf, int nCutpoints, int nParameters) throws ChiSquaredTest.NotCDFException, InverseCdf.DidNotConvergeException
cdf
- a CdfFunction
object that implements the
CdfFunction interfacenCutpoints
- an int
, the number of cutpointsnParameters
- an int
which specifies the number of
parameters estimated in computing the Cdf
ChiSquaredTest.NotCDFException
InverseCdf.DidNotConvergeException
Method Detail |
---|
public double[] getCellCounts()
double
array which contains the number
of actual observations in each cell.public double getChiSquared() throws ChiSquaredTest.NotCDFException
double
, the chi-squared statistic
ChiSquaredTest.NotCDFException
public double[] getCutpoints()
double
array which contains the cutpointspublic double getDegreesOfFreedom() throws ChiSquaredTest.NotCDFException
double
, the degrees of freedom in
the chi-squared statistic
ChiSquaredTest.NotCDFException
public double[] getExpectedCounts()
double
array which contains the number
of expected observations in each cell.public double getP() throws ChiSquaredTest.NotCDFException
double
, the p-value for the chi-squared statistic
ChiSquaredTest.NotCDFException
public void setCutpoints(double[] cutpoints)
cutpoints
- a double
array which contains the cutpointspublic void setRange(double lower, double upper) throws ChiSquaredTest.NotCDFException
lower
- a double
, the lower range limitupper
- a double
, the upper range limit
ChiSquaredTest.NotCDFException
public void update(double[] x, double[] freq) throws ChiSquaredTest.NotCDFException
x
- a double
array which contains the new
observations to be added to the testfreq
- a double
array which contains the frequencies
of the corresponding new observations in x
ChiSquaredTest.NotCDFException
public void update(double x, double freq) throws ChiSquaredTest.NotCDFException
x
- a double
, the new observation to be added to the testfreq
- a double
, the frequency of the new
observation, x
ChiSquaredTest.NotCDFException
|
JMSLTM Numerical Library 5.0.1 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |