Section author: Rebecca Vederhus, Sebastian Jentschke
From SPSS to jamovi: Non-parametric analyses
This comparison shows how a Kruskal-Wallis test is conducted in SPSS and jamovi. The SPSS test follows the description in chapter 7.6.4 in Field (2017), especially figure 7.13 and output 7.5 - 7.6. It uses the data set Soya.sav which can be downloaded from the web page accompanying the book.
SPSS |
jamovi |
|---|---|
In SPSS, a Kruskal-Wallis test can be run using: |
In jamovi this is done using the following steps: |
|
|
In SPSS, choose |
In jamovi, move |
|
|
Open the |
|
|
|
When comparing the outputs, the results in SPSS and jamovi are slightly different. In addition, the results from jamovi appear much clearer. |
|
|
|
In SPSS, you have to double-click the summary table to get all of the
results. The significance value of the test is found both in the summary
table and in the |
The output in jamovi contains two tables - |
The The numerical values from the Kruskal-Wallis test are the same in SPSS and jamovi: H = 8.66, df = 3, p = .034. |
|
If you wish to replicate those analyses using syntax, you can use the commands below (in jamovi, just copy to code below to Rj). Alternatively, you can download the SPSS output files and the jamovi files with the analyses from below the syntax. |
|
NPTESTS
/INDEPENDENT TEST (Sperm) GROUP (Soya) KRUSKAL\_WALLIS(COMPARE=PAIRWISE)
/MISSING SCOPE=ANALYSIS USERMISSING=EXCLUDE
/CRITERIA ALPHA=0.05 CILEVEL=95.
|
jmv::anovaNP(
formula = Sperm ~ Soya,
data = data,
es = TRUE,
pairs = TRUE)
|








