Hello dear Gabor,

First - thank you for this solution!

Second - I see that the text that is added around the axes is a tiny bit
shifted - causing a slight blur of the text.  Does it happen only on
Windows?  Can it be fixed?



----------------Contact
Details:-------------------------------------------------------
Contact me: tal.gal...@gmail.com |  972-52-7275845
Read me: www.talgalili.com (Hebrew) | www.biostatistics.co.il (Hebrew) |
www.r-statistics.com (English)
----------------------------------------------------------------------------------------------




On Wed, May 9, 2012 at 4:20 PM, Gabor Grothendieck
<ggrothendi...@gmail.com>wrote:

> On Wed, May 9, 2012 at 3:25 AM, maxbre <mbres...@arpa.veneto.it> wrote:
> > Given this example
> >
> > mean.values<-colMeans(VADeaths)
> >
> > mean.values<-apply(VADeaths, 2, mean)
> > median.values<-apply(VADeaths, 2, median)
> >
> > dotchart(VADeaths, gdata=mean.values)
> > dotchart(VADeaths, gdata=median.values)
> >
> > is it possible to “combine” a single dotchart showing both the mean and
> the
> > median for each single group (with different plotting symbols)?
> >
>
> Try this:
>
> dotchart(VADeaths, gdata=mean.values)
> par(new = TRUE)
> dotchart(VADeaths, gdata=median.values, gpch = 20)
>
> --
> Statistics & Software Consulting
> GKX Group, GKX Associates Inc.
> tel: 1-877-GKX-GROUP
> email: ggrothendieck at gmail.com
>
> ______________________________________________
> R-help@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide
> http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to