March 2019
Beginner to intermediate
448 pages
13h 14m
English
In this exercise, we will load the same dataset that we used for the two-sample t-test:
data = read.csv("./heights.csv") data$Sample = as.factor(data$Sample) wilcox.test(Height ~ Sample,data=data)
The preceding code displays the following output of Wilcoxon test results:

Read now
Unlock full access