Contents
ALGORITHMS
Site map
Links
Site and author
News
About the site
FAQ
Contact
TERMS OF USE

Sign test

The sign test is a non-parametric test used to compare the distribution median with a given value m. This test could be used as an alternative for one-sample Student t-test. Unlike the t-test, the sign test can work with non-normal distributions.

The sign test has only one requirement: scale of measurement[1] should be ordinal, interval or ratio (i.e. test could not be applied to nominal variables). This is the only restriction. On the one hand, this makes the test as widely applicable as possible. On the other hand, this lowers its effectiveness, because the test cannot use any assumptions about distribution properties.

Note #1
Sign test is not very powerful on small samples. This happens because the test uses only information about element positions relative to the assumed median: to the left or to the right. The test doesn't use information about their values. Fortunately, there is a more powerful test - the Wilcoxon signed-rank test. It uses information about elements' rank. Unfortunately, the scope of this test is limited by distributions which are symmetric relative to the median. With non-symmetric distributions, the test works incorrectly, so we are to use a less powerful sign test.

Subroutine OneSampleSignTest returns three p-values:

  • p-value for two-tailed test (null hypothesis - median is equal to the given number)
  • p-value for left-tailed test (null hypothesis - median is greater than or equal to the given number)
  • p-value for right-tailed test (null hypothesis - median is less than or equal to the given number)

The test algorithm is simple. All elements which are equal to m are thrown out. After that we have elements of two types only: elements which are greater than m (N + elements) and which are less than m. The more N + differs from N/2, the more probability there is that the median doesn't equal to m. If the hypothesis is true (the median equals m), N + distribution is binomial: B(N,0.5). This lets us define the significance level corresponding to N +.

Links

  1. 'Level of measurement', Wikipedia
  2. 'Hypothesis testing', Wikipedia
  3. 'P-value', Wikipedia

Report a bug

Source codes

C#

C# 1.0 source.
stest.csharp.zip - Sign test


C++

C++ source.
stest.cpp.zip - Sign test
ablas.zip - optimized basic linear algebra subroutines with SSE2 support (for C++ sources only)


Delphi

Delphi source.
Can be compiled under FPC (in Delphi compatibility mode).
stest.delphi.zip - Sign test


Visual Basic 6

Visual Basic 6 source.
stest.vb6.zip - Sign test


Zonnon beta

Zonnon source.
Zonnon is an experimental language developed at ETH Zurich.
See www.zonnon.ethz.ch for more information.
stest.zonnon.zip - Sign test



 
 
Sergey Bochkanov, Vladimir Bystritsky
Copyright © 1999-2008