Skip to content
Prev 157059 / 398506 Next

t tests/ANOVA

First check that your data satisfies the normality assumption. If yes, 
then start with the ANOVA test

    summary( fit <- aov( genomes ~ clonefed ) )

and *if* you find a significant F-value, you can see which difference is 
significant. i.e. post-hoc analysis.

    TukeyHSD( fit, "clonefed" )

You can use help("aov") etc to find out more details including examples.

Regards, Adai
Georgina Sarah Humphreys wrote: