Re: [R] beanplot without log scale?

2011-11-11 Thread Dennis Murphy
Hi:

Try the log =  argument to beanplot(). Here's an example:

library('beanplot')
v - exp(runif(1000, 0, 10))
beanplot(v)
beanplot(v, log = ')

HTH,
Dennis

On Thu, Nov 10, 2011 at 1:27 PM, Twila Moon twi...@uw.edu wrote:
 Is it possible to force beanplot not to use a log scale? I want to be able to 
 create multiple beanplots of different data on the same specified y-axis.

 When I try to force a ylim, I get the following...
 beanplot(reg5vel,ylim=(c(0,12000)))
 log=y selected
 Warning message:
 In plot.window(xlim = c(0.5, 7.5), ylim = c(0, 12000), log = y) :
  nonfinite axis limits [GScale(-inf,4.07918,2, .); log=1]

 Thanks,
 Twila

        [[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.


__
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.


[R] beanplot without log scale?

2011-11-10 Thread Twila Moon
Is it possible to force beanplot not to use a log scale? I want to be able to 
create multiple beanplots of different data on the same specified y-axis.

When I try to force a ylim, I get the following...
 beanplot(reg5vel,ylim=(c(0,12000)))
log=y selected
Warning message:
In plot.window(xlim = c(0.5, 7.5), ylim = c(0, 12000), log = y) :
  nonfinite axis limits [GScale(-inf,4.07918,2, .); log=1]

Thanks,
Twila

[[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.