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 like to use geom_jitter mostly to plot discrete data and avoid overplotting.
When using a combination of geom_jitter and facet_wrap with free scales I came to the issue that due to the free scales, jittering appeared misleading.
In the example below, I would like to see approximately equal noise, as I use jittering purely for visibility of data points. Apparently though, due to the free scales in geom_wrap the jittering looks different in the two facets.
How could this be approached? Could this be an issue inside face_wrap?
The text was updated successfully, but these errors were encountered:
hkosm
changed the title
Misleading noise when using geom_jitter in combination with face_wrap
Misleading noise when using geom_jitter in combination with facet_wrap
Jan 10, 2020
Thanks. The default jitterings are calculated on the whole data, not on the data per PANEL. It seems it's possible to delay the calculation to compute_layer() so that PANEL in data can be considered. (But, I'm not yet sure which behaviour is semantically correct)
Hello,
I like to use geom_jitter mostly to plot discrete data and avoid overplotting.
When using a combination of
geom_jitter
andfacet_wrap
with free scales I came to the issue that due to the free scales, jittering appeared misleading.In the example below, I would like to see approximately equal noise, as I use jittering purely for visibility of data points. Apparently though, due to the free scales in
geom_wrap
the jittering looks different in the two facets.How could this be approached? Could this be an issue inside
face_wrap
?Created on 2020-01-10 by the reprex package (v0.3.0)
The text was updated successfully, but these errors were encountered: