Hello,
I'm trying to do statistics for my experiment - I have 4 fungi isolates and I cultured them in different concentrations of Cu (0, 50, 100, 250 uM). After 3 days I dried and weighted the biomass. I want to know which one of the isolates grows the best in which Cu concentration.
I'm trying to do statistics in R software. I did the normality test using the command
> shapiro.test(Cu1$BIOMASS) and I also did Bartlett test of homogenity of variances ( > bartlett.test(BIOMASS ~ interaction(CU_CONC,TRICH), data = Cu1)), and they came out right.
Now I wanted to do Two-way ANOVA, because the biomass would be affected by the fungi isolate and the concentration. But I'm not sure what commands should I use...
I kindly ask for your help.
Thank you