Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
組み込みパッケージを使用して R で ANOVA を作成する必要があります。データは次のようになります。
dane=cbind(a=rnorm(10),b=rnorm(10),c=c(1,1,1,1,2,2,2,2,2,2))
aとbは、変数によって割り当てられたグループの平均値が等しいかどうかについて仮説をテストしたいc変数です。t-test私のケースは、十分でない場合の最も単純なケースです。
a
b
c
t-test
dane <- data.frame(dane) with(dane, aov(c(a[c==1],b[c==2]) ~ c))
aまたは、 と の両方をb個別の dvs としてテストする場合:
with(dane, aov(a ~ c)) with(dane, aov(b ~ c))