Re: [R] Dot plot similar to StatKey

2013-07-30 Thread Richard M. Heiberger
I would use panel.dotplot.tb from the HH package. It is based on lattice, hence will plot multiple groups on the same scale. continuing with S Ellison's example ## install.packages("HH") ## if necessary library(HH) rpx <- round.pch(x) dotplot( ~ rpx, panel=panel.dotplot.tb, ylim=c(.98, 1.15)) dot

Re: [R] Dot plot similar to StatKey

2013-07-30 Thread S Ellison
I said: > stripchart(xr, method="stack", pch=19) > will do this if the data are rounded appropriately. You may > have some fun with 'appropriately'. > A bit of tinkering gives something that gets close to 'appropriate' (below); you may want to tinker with the tuning factor (or, of course,

Re: [R] Dot plot similar to StatKey

2013-07-30 Thread John Kane
geom_dotplot() in the ggplot2 package perhaps? ggplot(mtcars, aes(x = mpg)) + geom_dotplot() John Kane Kingston ON Canada > -Original Message- > From: dwarnol...@suddenlink.net > Sent: Mon, 29 Jul 2013 23:21:26 -0700 (PDT) > To: r-help@r-project.org > Subject: [R] Dot

Re: [R] Dot plot similar to StatKey

2013-07-30 Thread S Ellison
> I'd like to use R to produce the following plot: > > dotplot.jpeg > > x<-rnorm(500) xr <- round(x, 1) stripchart(xr, method="stack", pch=19) will do this if the data are rounded appropriately. You may have some fun with 'appropri

Re: [R] Dot plot similar to StatKey

2013-07-29 Thread Jim Lemon
On 07/30/2013 04:21 PM, David Arnold wrote: Hi, I'd like to use R to produce the following plot: dotplot.jpeg This was constructed using StatKey at: http://www.lock5stat.com/statkey/bootstrap_1_quant/bootstrap_1_quant.html

[R] Dot plot similar to StatKey

2013-07-29 Thread David Arnold
Hi, I'd like to use R to produce the following plot: dotplot.jpeg This was constructed using StatKey at: http://www.lock5stat.com/statkey/bootstrap_1_quant/bootstrap_1_quant.html