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
Thanks for maintaining this package. While the current implementation mainly works with continues values, I was wondering if we could support for discrete axis break. For example, a horizontal barplot/boxplot where y are factors, and we want to add a break to y axis between factor 1 and factor 2
Thanks!
The text was updated successfully, but these errors were encountered:
wbvguo
changed the title
FR: support for discrete axis break
FeatureRequest: support for discrete axis break
Jun 28, 2024
I think discrete value should work if this code is adapted to not flag for reverse scoring.
Error in if (rngrev$flagrev == "reverse") { : argument is of length zero
In the meanwhile you can do it manually using facet_grid() as it accept logic statement as you would for aes() filtering.
df %>% ggplot(aes(x, group)) + facet_grid( vars(group == "Name of the factor level you want the break"), vars(facet1), scales = "free_y", space = "free" )
Dear ggbreak developer,
Thanks for maintaining this package. While the current implementation mainly works with continues values, I was wondering if we could support for discrete axis break. For example, a horizontal barplot/boxplot where y are factors, and we want to add a break to y axis between factor 1 and factor 2
Thanks!
The text was updated successfully, but these errors were encountered: