不同的卡方检验数值在R和在线计算器中

huangapple go评论51阅读模式
英文:

Different chi-squared test values in R and online calculators

问题

I'm calculating chi-squared goodness of fit test. There are four vegetation types (A–D), each occupies a given % of the total study area, and in each vegetation, a total number of specimens was calculated. The question is whether a distribution of this plant species is proportional to vegetation types areas or not. I ran the test in R and with an online calculator, but the results are very different, and only the online calculator returns the correct values (I know the answer).

A <- c(45, 4, 10, 59) #number of specimens in each vegetation, total 118 observations
B <- c(24, 17, 5, 54) #area of each vegetation = % of the total study area
C <- c(28.32, 20.06, 5.9, 63.72) #expected values (area % * 118)

chisq.test(A, C)

The output

Pearson's Chi-squared test

data:  A and C
X-squared = 12, df = 9, p-value = 0.2133

Next, I rerun the test with an online calculator (https://www.statology.org/chi-square-goodness-of-fit-test-calculator/) using my observed (A) and expected (C) data, and the result is:

X2 Test Statistic: 25.880627
p-value: 0.000010

This is also the correct answer. The question is: what am I doing wrong to have these two tests run so differently?

英文:

I'm calculating chi-squared goodness of fit test. There are four vegetation types (A–D), each occupies a given % of the total study area, and in each vegetation a total number of specimens was calculated. The question is whether a distribution of a this plant species is proportional to vegetation types areas or not. I ran the test in R and with an online calculator, but the results are very different and only the online calculator returns the correct values (I know the answer).

A <- c(45, 4, 10, 59) #number of specimens in each vegetation, total 118 observations
B <- c(24, 17, 5, 54) #area of each vegetation = % of the total study area
C <- c(28.32, 20.06, 5.9, 63.72) #expected values (area % * 118)

chisq.test(A, C)

The output

	Pearson's Chi-squared test

data:  A and C
X-squared = 12, df = 9, p-value = 0.2133

Next, I rerun the test with an online calculator (https://www.statology.org/chi-square-goodness-of-fit-test-calculator/) using my observed (A) and expected (C) data and the result is:

X2 Test Statistic: 25.880627
p-value: 0.000010

This is also the correct answer. The question is: what am I doing wrong to have these two tests run so differently?

答案1

得分: 1

chisq.test() 函数的输入不是人们所期望的。最佳方法是输入要测试的向量 x、期望概率的向量 p 以及 rescale 参数设置为 TRUE。检查"expected"结果以确认计算是否合理。

A <- c(45, 4, 10, 59) # 每种植被的样本数量,总共 118 个观测
B <- c(24, 17, 5, 54) # 每种植被的面积,占总研究区域的百分比
C <- c(28.32, 20.06, 5.9, 63.72) # 期望值(面积百分比 * 118)

chi <- chisq.test(A, p = C, rescale.p = TRUE)
print(chi)
# 给定概率的卡方检验
# 
# 数据:  A
# X-平方 = 25.881, 自由度 = 3, p-值 = 1.01e-05
chi$expected
#[1] 28.32 20.06  5.90 63.72

使用 chisq.test(A, C) 会生成一个方阵,这不是您想要的。

chi_wrong <- chisq.test(A, C)
chi_wrong$expected
#     C
# A   5.9 20.06 28.32 63.72
# 4  0.25  0.25  0.25  0.25
# 10 0.25  0.25  0.25  0.25
# 45 0.25  0.25  0.25  0.25
# 59 0.25  0.25  0.25  0.25
英文:

The input chisq.test() is not what people expect. The best way is input the vector to test, x the vector of expected probabilities, p and the rescale parameter=TRUE.
Examine the "expected" results to confirm the calculation makes sense.

A &lt;- c(45, 4, 10, 59) #number of specimens in each vegetation, total 118 observations
B &lt;- c(24, 17, 5, 54) #area of each vegetation = % of the total study area
C &lt;- c(28.32, 20.06, 5.9, 63.72) #expected values (area % * 118)

chi &lt;- chisq.test(A, p=C, rescale.p = TRUE)
print(chi)
# Chi-squared test for given probabilities
# 
# data:  A
# X-squared = 25.881, df = 3, p-value = 1.01e-05
chi$expected
#[1] 28.32 20.06  5.90 63.72

Using chisq.test(A, C) generates a square matrix which is not what you want.

chi_wrong &lt;- chisq.test(A, C)
chi_wrong$expected
#   C
# A   5.9 20.06 28.32 63.72
# 4  0.25  0.25  0.25  0.25
# 10 0.25  0.25  0.25  0.25
# 45 0.25  0.25  0.25  0.25
# 59 0.25  0.25  0.25  0.25 

huangapple
  • 本文由 发表于 2023年4月11日 03:17:09
  • 转载请务必保留本文链接:https://go.coder-hub.com/75980026.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定