我有显示消防员入学考试结果的数据。我正在测试考试结果和种族不是相互独立的假设。In chisq.test(a) : Chi-squared approximation may be incorrect
为了对此进行测试,我在 R 中运行了 Pearson 卡方检验。结果显示了我的预期,但它给出了“ .”的警告。
> a
white black asian hispanic
pass 5 2 2 0
noShow 0 1 0 0
fail 0 2 3 4
> chisq.test(a)
Pearson's Chi-squared test
data: a
X-squared = 12.6667, df = 6, p-value = 0.04865
Warning message:
In chisq.test(a) : Chi-squared approximation may be incorrect
有谁知道它为什么发出警告?是因为我使用了错误的方法吗?