-----Original Message-----
From: Deepayan Sarkar [mailto:deepayan.sarkar at gmail.com]
Sent: Wednesday, October 19, 2005 3:34 PM
To: Mike Bock
Cc: r-help at stat.math.ethz.ch
Subject: Re: Range plots (lattice or base?)
On 10/19/05, Mike Bock <mbock at environcorp.com> wrote:
I am looking to create what I would call a "simple
boxplot. What I would like to do is to be able to plot the
lower confidence limits as the "box" and the 10th and 90th
as the whiskers. What I have done is write the code to create a
dataframe, the columns of which are the mean, sd, 10th percentile,
90th percentile, lower confidence limit of the mean, and upper
confidence limit of the mean, the rows are the groups. I
this to excel and get the graph I want by using the stock graphs in
excel that plot open, close, high and low but I would much
do this in R for reason too numerous to enumerate.
I have looked high and low and even took a brief look at the bwplot
code in the lattice package. Given my experience level it
quite a while for me to modify the bwplot code to get what
create a new graph type, assuming I could get it to work at
anyone know of an easier way to get what I want, with and example?
Lattice, grid, base, whatever, I don't especially care what tools I
need to use. My only constrante is that I feed it the
as a dataframe rather than calculate it on the fly so if we
minds about UCL method or percentiles there is no problem.
Is your UCL method guaranteed to work separately on groups
(e.g. if the s.d. is estimated per group) or does it share
information across groups (e.g. some sort of pooled estimate
of s.d.)? In the former case, you could try writing a
replacement for boxplot.stats and use that in panel.bwplot.
Deepayan