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
The ggplot2 function coord_trans() affects only axes and not the data unlike scale_x/y_...()
It should be used instead to prevent unwanted crashes and warning messages from scale_x/y_...().
The text was updated successfully, but these errors were encountered:
- `coord_trans()` can't be used for the transformation because the method adding the watermark in background. Consequently, log and discrete transformations still use scale_x/y...
- For the same reason, `coord_cartesian()` is used to set the axis limits
- suppressMessage is needed for the same reason as scale: multiple coord systems or scales lead to ggplot unwanted messages
The
ggplot2
functioncoord_trans()
affects only axes and not the data unlikescale_x/y_...()
It should be used instead to prevent unwanted crashes and warning messages from
scale_x/y_...()
.The text was updated successfully, but these errors were encountered: