data(dune)
data(dune.env)
results<-list()
for (i in colnames(dune.env)){
results[[i]]<- adonis(dune ~ i, data=dune.env, permutations=99)
}
When I test each name in colnames(dune.env)
, it can work.
But it can not work in the loop function above. I think it is due to the i
in the loop fuction has " "
. How to fix it? Thanks.