Displaying 1 result from an estimated 1 matches for "87o3uicpf6dt4kkdyvfv".
2009 Nov 08
2
Simple 2-Way Anova issue in R
...3 17.323 5.774
Year:Depth 6 2.587 0.431
There is no F-value or Pr(>F) columns.
I also can't boxplot this correctly, again following the example at that
website above they have:
boxplot(Alertness~Dosage*Gender,data=data.ex2)
which outputs:
http://old.nabble.com/file/p26258684/87o3uicpf6dt4kkdyvfv.jpeg
My code is:
boxplot(Replicate1~Year*Depth,data=data.ex2)
which outputs:
http://old.nabble.com/file/p26258684/gik02vyhvvbmcvw3ia2h.jpeg
This is incorrect, it's multiplying my factors but I thought that when I did
the str() on my data it recognized the Year and Depth as factors, not
n...