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.

______________________________________________
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