6. Wilcoxon rank-sum test and Wilcoxon signed-rank test
Amy Atkinson
Lab preparation
Before the lab, please watch the following short video. This walks you through how to perform a Wilcoxon rank-sum test and Wilcoxon signed-rank test in R.
If you want to have a play around with the script yourself, the R markdown script and datasets can be downloaded here.
Lab
Overview
I’ll provide you with one or two research questions each week which will require you to complete the statistical tests covered in the lectures. You can work in groups or individually.
You can write your script as a .R or Rmd file. Use the lab preparation video and script, lecture slides, and previous content covered in the statistics modules to help you.
The presentation given at the start of the lab can be downloaded here.
Datasets
The datasets for this lab can be downloaded here.
Research question 1: Independent groups
You are a researcher interested in whether the old saying “an apple a day keeps the doctor away is true”.
You recruit 16 people and assign each participant to either a “0 apples” or “1 apple” group. Participants in the “0 apple” group eat 0 apples every day for a year. Participants in the “1 apple” group eat 1 apple a day for a year. You ask participants to report how many times they visited the GP in the year.
Research question 2: Repeated measures
You are interested in whether eating bananas keeps the doctor away.
This time you recruit only one group of participants. In the first year, you ask them to eat 0 banana every day. In the second year, you ask them to eat 1 bananas a day. You ask them to report how many times they visit the GP in Year 1 and Year 2.
Hints and tips
Your script should aim to answer and interpret both of these research questions. Start a new session on the server, then load in the required libraries (tidyverse, cowplot, ggpubr, rstatix) and the datasets.
For each research questions, you will need to:
Perform normality checks
Explore your data (e.g. descriptive statistics, a plot)
Conduct the statistical test
Calculate an effect size
Interpret the output
Model script
A model script showing one way of answering the research questions above using R will be available here from 9am on Monday of Week 17.
Feedback on student scripts
Here is some feedback on a few scripts submitted by students.