在统计学中,为了对两个样本的均值进行z检验,我必须检查它们的独立性。我曾尝试过Pearson' Chi Squared测试,但它要求我的样品具有相同的尺寸(例如,一个是359个元素长,另一个只有141个)。这样做还有其他办法吗? 以下是我的代码和我的结果示例(每个示例只是一个数字向量):
> head(data_feri)
[1] 2.56495 4.26268 3.17805 2.99573 2.30259 0.69315
> head(data_fest)
[1] 3.68888 2.19722 1.60944 3.52636 2.63906 2.48491
> length(data_feri)
[1] 359
> length(data_fest)
[1] 141
> chisq.test(data_fest, data_feri)
Error in chisq.test(data_fest, data_feri) :
'x' and 'y' must have the same length
> chisq.test(table(data_fest, data_feri))
Error in table(data_fest, data_feri) :
all arguments must have the same length