I noticed that geom_beeswarm(method="center") nicely centers the points. However, it also changes the y position resulting in binned and thus "inaccurate" y values.
Without method="center" correct y values are displayed
With method="center" y value position is "inaccurate"
I would love to have the best of both worlds: centered points that faithfully recapitulate the real y value.
I know that this is possible in plotting tools like Prism, which does a great job in positioning points. However, a ggplot version of this would be fantastic!
Hi @eclarke,
thanks for this great package!
I noticed that
geom_beeswarm(method="center")
nicely centers the points. However, it also changes the y position resulting in binned and thus "inaccurate" y values.Without
method="center
" correct y values are displayedWith
method="center"
y value position is "inaccurate"I would love to have the best of both worlds: centered points that faithfully recapitulate the real y value.
I know that this is possible in plotting tools like Prism, which does a great job in positioning points. However, a ggplot version of this would be fantastic!