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
Currently, when you zoom in (with +ggtb()) to the points created by geom_point or geom_jitter points do not become larger. Instead, the point size stays the same. For the context, violin and boxplot does not share this behavior.
This might be the expected behavior in many cases. But, I think having the option to allow points grow larger while zooming in could also be desired, such as in my case.
Would there be a possibility to include an argument in ggtb to allow such behavior?
The text was updated successfully, but these errors were encountered:
You can use the parameter size_unit='x' (or size_unit='y') in geom_point.
This works well with wheel zoom. With rubberband/centerpoint zoom, the results may vary since the point size will be linked to the units of only one axis.
There's a feature request (#260) to add a third option to size_unit that would link point size to both axes (using whichever unit is smaller).
Currently, when you zoom in (with
+ggtb()
) to the points created bygeom_point
orgeom_jitter
points do not become larger. Instead, the point size stays the same. For the context, violin and boxplot does not share this behavior.This might be the expected behavior in many cases. But, I think having the option to allow points grow larger while zooming in could also be desired, such as in my case.
Would there be a possibility to include an argument in ggtb to allow such behavior?
The text was updated successfully, but these errors were encountered: