我认为 Mann-Whitney/Wilcoxon 排名和检验是合适的检验。KS 测试专门用于比较连续分布 - 您的评级是有序的,因此在这里似乎不合适。
t 检验和 Wilcoxon 排名和的不同之处在于 t 检验比较两个分布的均值,而 Wilcoxon 通过查看两个分布的值在排名时如何比较来比较“位置”。当您的整个评级分布只有两个值时,一组只有 4 的评级并且您的样本量为 14,t 检验对我来说似乎不太合适。它有效,但我只是在概念上更难使用它。该数据比连续数据更具有二项性!
以下是我在R 中完成所有这些操作的方法,R 是一款免费提供的统计计算软件(我认为是使用网站计算测试的一个进步……)
# A vector of data for people with smartphone experience
smartphone <- c(4, 4, 4, 4)
# A vector of data for people without smartphone experience
dumbphone <- c(4, 3, 4, 3, 3, 3, 3, 3, 3, 3)
# The Mann-Whitney/Wilcoxon ranked-sum test
wilcox.test(x = smartphone, y = dumbphone)
# t-test for comparison
t.test(x = smartphone, y = dumbphone)
# And, why not, a test of proportions
# Consider 4 as the event, comparing 4/4 to 2/10
prop.test(x = c(4, 2), n = c(4, 10))