I have a 350 plant genotypes that have been tested for resistance against a disease in the field. i used ANOVA to see if there is differences between the genotypes reactions. Here is my code:
mydata=read.csv("population1ohneNAs.csv", header = TRUE, sep = ";")
mydata
summary(mydata)
ANOVA worked out
myAnovaResults=aov(mydata$Tiefe~mydata$Prüfglieder, data = mydata)
summary(myAnovaResults)
when I tried to get TukeyTest results i got this error:
resultTukey=(TukeyHSD(myAnovaResults,"Prüfglieder",ordered = TRUE))
# Error in order(means) : argument 1 is not a vector