I have this data in r, which I need to make an anova with.
My problem is, that I only need data out of Faktor
0 and 2 but not 1.
I can access one with:
FSQ$total_Sum[FSQ$Faktor=="0"]
but I don;t know how I can create an anova with only Faktor 0,2. Here is my current anova code:
anova_FSQ_Vor_Nach <- aov(FSQ$Faktor ~FSQ$total_Sum[FSQ$Faktor=="0"])
thanks for the help.