Skip to content

eusebioaguilera/statistical-hypothesis-tests

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

statistical-hypothesis-tests

This repo contains several statistical hypothesis tests.

Wilcoxon (http://en.wikipedia.org/wiki/Wilcoxon_signed-rank_test)

The Wilcoxon signed-rank test is used for comparing two related samples. This test is intended to compare two samples and test if there are significant differences between them. The assumptions for the compared data are:

  • Data are paired and come from the same population.
  • Each pair is chosen randomly and independently.
  • The data are measured at least on an ordinal scale, but need not be normal.

The out of the script is the ranking table and the decision if the null hypothesis could be rejected.

The file "wilcoxon_data_wikipedia.csv" contains the data of the examples that appears in the wikipedia page. The usage is

python wilcoxon.py wilcoxon_data_wikipedia.csv

This example obtains the output:

+-------+-------+-------+------+
| Data1 | Data2 | D1-D2 | Sign |
+-------+-------+-------+------+
| 125.0 | 110.0 |  15.0 |  1   |
| 115.0 | 122.0 |  -7.0 |  -1  |
| 130.0 | 125.0 |  5.0  |  1   |
| 140.0 | 120.0 |  20.0 |  1   |
| 140.0 | 140.0 |  0.0  |  1   |
| 115.0 | 124.0 |  -9.0 |  -1  |
| 140.0 | 123.0 |  17.0 |  1   |
| 125.0 | 137.0 | -12.0 |  -1  |
| 140.0 | 135.0 |  5.0  |  1   |
| 135.0 | 145.0 | -10.0 |  -1  |
+-------+-------+-------+------+
+--------------------+-------------------+-------+
| Possitive Rank sum | Negative Rank Sum | Total |
+--------------------+-------------------+-------+
|         6          |         4         |   10  |
+--------------------+-------------------+-------+

The sum of the negatives ranks of the differences 18.0
p-value 0.593630591443
Null hypothesis could not be rejected!

Therefore the null hypothesis could not be rejected, and then we can not affirm that there is significant differences.

About

This repo contains several statistical hypothesis tests.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages