I would like to run 100 ANOVA for different numeric vectors.
My numeric vectors are (ruy, fjr, akf....) from my data.frame
aa=aov(data.frame$ruy~data.frame$Group)
anova(aa)
ab=aov(data.frame$fjr~data.frame$Group)
anova(ab)
ac=aov(data.frame$akf~data.frame$Group)
anova(ac)
.....
.....
My looping skills are poor so please be nice.
Since
aov
is based onlm
you cancbind
dependent variables on the LHS, which results in seperate models being run: