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 also get this error. It would be nice to have breaks on both axes!
Error in `error_cnd()`:
! Conditions must have named data fields
Run `rlang::last_trace()` to see where the error occurred.
Called from: signal_abort(cnd, .file)
There are some problem when i want to simultaneous break x axis and y axis.
Some bug information couble be seen.
followed by an example:
data <- data.frame(
x = c(1, 2, 3, 4, 500),
y = c(10, 20, 30, 40, 1000))
ggplot(data, aes(x, y)) +
geom_point() +
scale_x_break(breaks = c(5,450)) +
scale_y_break(breaks = c(50,950))
**
The text was updated successfully, but these errors were encountered: