You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I discovered issue #2712 when looking for a solution to the misalignment of boxplots with overlaid points. While the solution shown works in the example, it does not seem to generalise to cases with a greater number of factors.
Ideally it would be possible to achieve the same thing with position_jitterdodge(), but I guess that is beyond the scope of this issue.
I think there are a couple of issues here that are recurring themes with dodging. One is that position_dodge2() doesn't work for point geoms at all, so every time you combine a box plot with points you have to combine completely different dodging algorithms, which is predictably error prone. The other is that layers don't know about the position of elements in other layers, so it's generally hard to align geoms across layers. It's been suggested in the past that maybe the solution would be a dodging aesthetic (this has come up in #3022 and #3988). Unfortunately I don't think there is an easy solution without a major refactor.
Hi,
I discovered issue #2712 when looking for a solution to the misalignment of boxplots with overlaid points. While the solution shown works in the example, it does not seem to generalise to cases with a greater number of factors.
Ideally it would be possible to achieve the same thing with
position_jitterdodge()
, but I guess that is beyond the scope of this issue.The text was updated successfully, but these errors were encountered: