I am trying to perform paired Mann Whitney U tests. My samples for each test are very different and by the t.test do produce different results, but the results are identical for the MW test. By contrast the default settings for the MW test work just fine and do give different results. Any ideas? Attached is code which contains a sample of my overall data and the test function. The t.test is included to show that different results are produced by the test:
x1 <- c(26.33323, 26.69508, 26.25390, 18.78399, 24.11386, 23.94950,
23.77843, 21.09932, 17.71425, 19.03429, 20.01796, 19.86626, 12.84303)
x2 <- c(20.82535, 20.27921, 17.99138, 10.40184, 23.23184, 22.56530,
18.69153, 18.33580, 13.83343, 18.22934, 15.21738, 10.07495, 9.93721)
y1 <- c(169.73751, 134.85579, 122.62475, 67.87308, 110.10757, 125.72300,
133.87937, 135.56772, 79.41600, 96.92930, 97.92528, 68.62409, 40.21653)
y2 <- c(92.88698, 54.23404, 51.58410, 21.72830, 72.02835, 70.74432,
69.52055, 89.59934, 49.08684, 79.98573, 50.58707, 22.80362, 22.49185)
wilcox.test(x1, x2, paired = TRUE)
wilcox.test(y1, y2, paired = TRUE)
t.test(x1, x2, paired = TRUE)
t.test(y1, y2, paired = TRUE)