如何测试R中相等的组大小?
chisq.test(rep(1:3, 100))
产生300个自由度,而我希望这个测试以2个自由度进行。
答案 0 :(得分:3)
chisq.test
需要制表数据:
> chisq.test(table(rep(1:3, 100)))
Chi-squared test for given probabilities
data: table(rep(1:3, 100))
X-squared = 0, df = 2, p-value = 1