Skip to content
Back to formatted view

Raw Message

Message-ID: <1551433AFCD0B35F3DD1C916@G4Desktop.local>
Date: 2005-09-28T22:57:01Z
From: Aric Gregson
Subject: Plot Data Points in boxplots
In-Reply-To: <971536df0509271755308e5a33@mail.gmail.com>

--On 9/27/05 8:55 PM -0400 Gabor Grothendieck sent:

> Try this:
>
> boxplot(Sepal.Length ~ Species, iris)
> with(iris, stripchart(Sepal.Length ~ Species, vertical = TRUE, add =
> TRUE))

Thanks very much for the hint. I did something very similar with decent 
results. The only problem I am having now is that I cannot figure out 
how to make stripchart plot without a box or axis. Alternatively, I can 
use DOTplot from UsingR, but I cannot find out how to rotate it for 
vertical.

thanks,

aric

> On 9/27/05, Aric Gregson <aorchid at mac.com> wrote:
>> Hello,
>>
>> I would like to plot my data in a fashion similar to a boxplot, but
>> plot the true data points without a box, just overlay lines of the
>> summary generated by the boxplot.