On 12-09-09 11:52 AM, Giovanni Azua wrote:
> Hi
>
> Thank you for your prompt answers, indeed jittering doesn't solve my problem, besides, in this case having more points just clutters the plots and doesn't add any value:
>
>
>
>
>
> Best!
> Giovanni
>
>
Oops, I didn't look at your example, I was thinking of a true 2-D
scatterplot. I would consider
(1) dispensing with geom_point() entirely
(2) do something (outside ggplot) that subsets the data to only the
extremes, e.g. along the lines of
subdat <- ddply(origdata,splitvar,
function(x) {
lwr <- quantile(x$runtime,0.025)
upr <- quantile(x$runtime,0.975)
x[x$runtime>lwr | x$runtime>upr,]
})
... + geom_point(data=subdat)
...