I'm trying to find if soil PH levels differ between 3 species of violet. I'm performing a one way ANOVA test in R and entered the text as follows:
anova<-aov(viola$PH~viola$species)
summary(anova)
This seems like it should be simple and I've done similar tests before, but when I run this, all I get is the degrees of freedom, sum sq, and mean sq. Any help would be appreciated.