As a part of a project I need to perform anova
analysis between the various columns of a csv file. Is there any way I can write a loop to do the anova
between the all the columns instead of doing it individually?
Right now I am using the following code.
anova(colx,col1)
anova(colx,col2)
.
.
.
anova(colx,coln)
I want to automate this process and select the columns which give the maximum F value.