[R] bwplot - scattered

Erik Iverson eriki at ccbr.umn.edu
Wed Apr 28 18:35:26 CEST 2010



someone wrote:
> Hi,
> I'm using the bwplot from the agsemisc package which has a scattered
> attribute which can be set so that the single dots can bee seen better.
> my problem is, that I am having so many dots that they still overlap.
> I could increase the output of the diagram but thats not really my
> intention.
> has someone an idea on how to have a stronger jitter?

I once wrote a panel function that looked like this:

panel = function(...) {
      panel.bwplot(...)
      panel.stripplot(jitter.data  = TRUE, amount = .25, alpha = .4, ...)
}

So panel.stripplot does accept that amount argument that is passed on to 
jitter (if I recall correctly).  I think there was also an argument 
called factor, see ?jitter.



More information about the R-help mailing list