[R] boxplot overlap beeswarm

2015-09-24 Thread Julia89
Hi everybody, I'm new and i need help very fast. I will make a transparent boxplot overlap a beeswarm. I don't want to use ggplot2, i will use ggplot. Here is my own script but it doesn't worked. Maybe you can help me. Thanks in advance Julia require(beeswarm)#rohdaten boxplots rm(list=ls())

Re: [R] boxplot overlap beeswarm

2015-09-24 Thread MacQueen, Don
I see that you have used add = TRUE in the boxplot call. Add only makes sense if there is already a plot to which to add the boxplot. But your boxplot is first, so there isn't anything to add it to. Try doing the beeswarm plot first? Will the two plots will have the same y axis ranges? Minor