Re: [R] ANOVA plotting

2011-01-20 Thread John Fox
p-boun...@r-project.org [mailto:r-help-boun...@r-project.org] > On Behalf Of Bulent Arikan > Sent: January-20-11 2:15 PM > To: r-help@r-project.org > Subject: [R] ANOVA plotting > > Dear List, > > I recently started using R and I have a simple question. I am running R > (v.

Re: [R] ANOVA plotting

2011-01-20 Thread Robert Baer
I recently started using R and I have a simple question. I am running R (v. 2.12.1) and Rcmdr (v.1-6.3) on Mac (Snow Leopard). I am using a data set I used before for practicing ANOVA with R, so I know what the results should look like. I can get ANOVA table using both Rcmdr and GUI. However,

Re: [R] ANOVA plotting

2011-01-20 Thread Sarah Goslee
I'm not sure what a "real ANOVA diagram" is supposed to look like, nor do I know what your data look like. But this might get you started: fakedata <- runif(100) fakegroups <- sample(rep(letters[1:5], each=20)) boxplot(fakedata ~ fakegroups) If that isn't what you're after, a clearer explanation

[R] ANOVA plotting

2011-01-20 Thread Bulent Arikan
Dear List, I recently started using R and I have a simple question. I am running R (v. 2.12.1) and Rcmdr (v.1-6.3) on Mac (Snow Leopard). I am using a data set I used before for practicing ANOVA with R, so I know what the results should look like. I can get ANOVA table using both Rcmdr and GUI. H