Autor des Abschnitts: 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. |
|
Wenn Sie diese Analysen mit Hilfe der Syntax replizieren möchten, können Sie die unten stehenden Befehle verwenden (in jamovi kopieren Sie einfach den unten stehenden Code in Rj). Alternativ können Sie auch die SPSS-Ausgabedateien und die jamovi-Dateien mit den Analysen unterhalb der Syntax herunterladen. |
|
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)
|








