Rで2つのカテゴリカルデータ(質的データ)の比較

Rで2つのカテゴリカルデータ(質的データ)の比較

カイ2乗検定の例

> v1<-table*1

Pearson's Chi-squared test

data: cbind(v1, v2)
X-squared = 18.232, df = 2, p-value = 0.0001099

> v2<-table*2

Pearson's Chi-squared test

data: cbind(v1, v2)
X-squared = 5.8369, df = 2, p-value = 0.05402

*1:qba$PET)[qba$y==0]) > v2<-table((qba$PET)[qba$y==1]) > chisq.test(cbind(v1,v2

*2:qbb$PET)[qbb$y==1]) > v1<-table((qbb$PET)[qbb$y==0]) > chisq.test(cbind(v1,v2