The NPAR1WAY Procedure

Simple Linear Rank Tests for Two-Sample Data

Statistics of the form

\[  S = \sum _{j=1}^ n c_ j ~  a(R_ j)  \]

are called simple linear rank statistics, where

$R_ j$

is the rank of observation j

$a(R_ j)$

is the score based on the rank of observation j

$ c_ j$

is an indicator variable denoting the class to which the jth observation belongs

n

is the total number of observations

For two-sample data (where the observations are classified into two levels), PROC NPAR1WAY calculates simple linear rank statistics for the scores that you specify. The section Scores for Linear Rank and One-Way ANOVA Tests describes the available scores, which you can use to test for differences in location and differences in scale.

To compute the linear rank statistic S, PROC NPAR1WAY sums the scores of the observations in the smaller of the two samples. If both samples have the same number of observations, PROC NPAR1WAY sums those scores for the sample that appears first in the input data set.

For each score that you specify, PROC NPAR1WAY computes an asymptotic test of the null hypothesis of no difference between the two classification levels. Exact tests are also available for these two-sample linear rank statistics. PROC NPAR1WAY computes exact tests for each score type that you specify in the EXACT statement. See the section Exact Tests for details.

To compute an asymptotic test for a linear rank sum statistic, PROC NPAR1WAY uses a standardized test statistic z, which has an asymptotic standard normal distribution under the null hypothesis. The standardized test statistic is computed as

\[  z = \left( S - \mr {E_0}(S) \right) / \sqrt {\mr {Var_0}(S)}  \]

where $\mr {E_0}(S)$ is the expected value of S under the null hypothesis, and $\mr {Var_0}(S)$ is the variance under the null hypothesis. As shown in Randles and Wolfe (1979),

\[  \mr {E_0}(S) = \frac{n_1}{n} \sum _{j=1}^ n a(R_ j)  \]

where $n_1$ is the number of observations in the first (smaller) class level (sample), $n_2$ is the number of observations in the other class level, and

\[  \mr {Var_0}(S) = \frac{n_1 n_2}{n (n-1)} \sum _{j=1}^ n \left( a(R_ j) - \bar{a} \right)^2  \]

where $\bar{a}$ is the average score,

\[  \bar{a} = \frac{1}{n} \sum _{j=1}^ n a(R_ j)  \]
Definition of p-Values

PROC NPAR1WAY computes one-sided and two-sided asymptotic p-values for each two-sample linear rank test. When the test statistic z is greater than its null hypothesis expected value of zero, PROC NPAR1WAY computes the right-sided p-value, which is the probability of a larger value of the statistic occurring under the null hypothesis. When the test statistic is less than or equal to zero, PROC NPAR1WAY computes the left-sided p-value, which is the probability of a smaller value of the statistic occurring under the null hypothesis. The one-sided p-value $P_1(z)$ can be expressed as

\begin{equation*}  P_1(z) = \begin{cases}  \mr {Prob} (Z > z) \quad \mr {if} \hspace{.1in} z > 0 \\ \mr {Prob} (Z < z) \quad \mr {if} \hspace{.1in} z \leq 0 \\ \end{cases}\end{equation*}

where Z has a standard normal distribution. The two-sided p-value $P_{2}(z)$ is computed as

\[  P_{2}(z) = \mr {Prob} (|Z| > |z|)  \]
Continuity Correction

PROC NPAR1WAY uses a continuity correction for the asymptotic two-sample Wilcoxon and Siegel-Tukey tests by default. You can remove the continuity correction by specifying the CORRECT=NO option. PROC NPAR1WAY incorporates the continuity correction when computing the standardized test statistic z by subtracting 0.5 from the numerator $(S - \mr {E_0}(S))$ if it is greater than zero. If the numerator is less than zero, PROC NPAR1WAY adds 0.5. Some sources recommend a continuity correction for nonparametric tests that use a continuous distribution to approximate a discrete distribution. (See Sheskin 1997.)

If you specify CORRECT=NO, PROC NPAR1WAY does not use a continuity correction for any test.