NAG CL Interface
g08afc (test_​kruskal)

Settings help

CL Name Style:


1 Purpose

g08afc performs the Kruskal–Wallis one-way analysis of variance by ranks on k independent samples of possibly unequal sizes.

2 Specification

#include <nag.h>
void  g08afc (Integer k, const Integer l[], const double x[], Integer lx, double *h, double *p, NagError *fail)
The function may be called by the names: g08afc, nag_nonpar_test_kruskal or nag_kruskal_wallis_test.

3 Description

The Kruskal–Wallis test investigates the differences between scores from k independent samples of unequal sizes, the i th sample containing l i observations. The hypothesis under test, H 0 , often called the null hypothesis, is that the samples come from the same population, and this is to be tested against the alternative hypothesis H 1 that they come from different populations.
The test proceeds as follows:
  1. (a)The pooled sample of all the observations is ranked. Average ranks are assigned to tied scores.
  2. (b)The ranks of the observations in each sample are summed, to give the rank sums R i , for i=1,2,,k.
  3. (c)The Kruskal–Wallis' test statistic H is computed as:
    H = 12 N (N+1) i=1 k R i 2 l i - 3 (N+1) ,   where N = i=1 k l i ,  
    i.e., N is the total number of observations. If there are tied scores, H is corrected by dividing by:
    1 - ( t 3 -t) N 3 - N  
    where t is the number of tied scores in a group and the summation is over all tied groups.
g08afc returns the value of H , and also an approximation, p , to the probability of a value of at least H being observed, H 0 is true. ( H approximately follows a χ k-1 2 distribution). H 0 is rejected by a test of chosen size α if p < α . The approximation p is acceptable unless k=3 and l 1 , l 2 or l 3 5 in which case tables should be consulted (e.g., O of Siegel (1956)) or k=2 (in which case the Median test (see g08acc) or the Mann–Whitney U test (see g08amc) is more appropriate).

4 References

Moore P G, Shirley E A and Edwards D E (1972) Standard Statistical Calculations Pitman
Siegel S (1956) Non-parametric Statistics for the Behavioral Sciences McGraw–Hill

5 Arguments

1: k Integer Input
On entry: the number of samples, k .
Constraint: k2 .
2: l[k] const Integer Input
On entry: l[i-1] must contain the number of observations l i in sample i , for i=1,2,,k.
Constraint: l[i-1] > 0 , for i=1,2,,k.
3: x[lx] const double Input
On entry: the elements of x must contain the observations in the k groups. The first l 1 elements must contain the scores in the first group, the next l 2 those in the second group, and so on.
4: lx Integer Input
On entry: the total number of observations, N .
Constraint: lx = i=1 k l[i-1] .
5: h double * Output
On exit: the value of the Kruskal–Wallis test statistic, H .
6: p double * Output
On exit: the approximate significance, p , of the Kruskal–Wallis test statistic.
7: fail NagError * Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).

6 Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
NE_ARRAY_CONS
The contents of array l are not valid.
Constraint: l[i-1] > 0 , for i=1,2,,k.
NE_INT
On entry, lx=value .
Constraint: lx = i=1 k l[i-1] , for i=1,2,,k.
NE_INT_ARG_LT
On entry, k=value.
Constraint: k2.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
NE_X_IDEN
On entry, all elements of x are equal.

7 Accuracy

For estimates of the accuracy of the significance p , see g01ecc. The χ 2 approximation is acceptable unless k=3 and l 1 , l 2 or l 3 5 .

8 Parallelism and Performance

g08afc is not threaded in any implementation.

9 Further Comments

The time taken by g08afc is small, and increases with N and k .
If k=2 , the Median test (see g08acc) or the Mann–Whitney U test (see g08amc) is more appropriate.

10 Example

This example is taken from Moore et al. Moore et al. (1972). There are 5 groups of sizes 5, 8, 6, 8 and 8. The data represent the weight gain, in pounds, of pigs from five different litters under the same conditions.

10.1 Program Text

Program Text (g08afce.c)

10.2 Program Data

Program Data (g08afce.d)

10.3 Program Results

Program Results (g08afce.r)