Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using ggbreak for one axis prevents use of coord_cartesian on other axis #59

Open
rcgsmith opened this issue Jul 20, 2023 · 3 comments
Open

Comments

@rcgsmith
Copy link

When scale_y_break is used to set a gap in the y axis, it is no longer possible to 'zoom' into regions of interest using coord_cartesian limits on the x axis. In my use case I need to use coord_cartesian rather than setting scale limits.

I am using package version 0.1.2.

Really hope this is an easy fix or there is an easy work around as I am finding the ggbreak package very useful - thank you.

Example with iris dataset:

p<-ggplot() + geom_point(data=iris, aes(x=Sepal.Length, y=Petal.Width))
p + scale_y_break(breaks=c(0.7,0.9))
ggbreak_issue_1
p + scale_y_break(breaks=c(0.7,0.9)) + coord_cartesian(xlim=c(5,6))
ggbreak_issue_2
Unfortunately coord_cartesian(xlim=c(5,6)) has no effect on the plot.

@rcgsmith
Copy link
Author

rcgsmith commented Aug 4, 2023

Just wondering if anyone has any potential solutions to this issue, or has had the same problem?

@Plant15
Copy link

Plant15 commented Jan 25, 2024

I have the same problem. It's really anoying thinking that we are using this function to fix the scale of the axis and it end up in a mess...

@Aariq
Copy link

Aariq commented Feb 9, 2024

Another simple reprex:

library(ggplot2)
library(ggbreak)
#> ggbreak v0.1.2
#> 
#> If you use ggbreak in published research, please cite the following
#> paper:
#> 
#> S Xu, M Chen, T Feng, L Zhan, L Zhou, G Yu. Use ggbreak to effectively
#> utilize plotting space to deal with large datasets and outliers.
#> Frontiers in Genetics. 2021, 12:774846. doi: 10.3389/fgene.2021.774846
df <- data.frame(x = 1:10, y = 1:10)
p <- 
  ggplot(df, aes(x, y)) +
  geom_point() +
  coord_cartesian(clip = "off", ylim = c(0,5), expand = 0)
p

p + scale_x_break(c(6, 8))

Created on 2024-02-09 with reprex v2.0.2

Session info
sessioninfo::session_info()
#> ─ Session info ───────────────────────────────────────────────────────────────
#>  setting  value
#>  version  R version 4.3.1 (2023-06-16)
#>  os       macOS Sonoma 14.2.1
#>  system   x86_64, darwin20
#>  ui       X11
#>  language (EN)
#>  collate  en_US.UTF-8
#>  ctype    en_US.UTF-8
#>  tz       America/Phoenix
#>  date     2024-02-09
#>  pandoc   3.1.1 @ /Applications/RStudio.app/Contents/Resources/app/quarto/bin/tools/ (via rmarkdown)
#> 
#> ─ Packages ───────────────────────────────────────────────────────────────────
#>  package      * version date (UTC) lib source
#>  aplot          0.2.2   2023-10-06 [1] CRAN (R 4.3.0)
#>  cachem         1.0.8   2023-05-01 [1] CRAN (R 4.3.0)
#>  cli            3.6.2   2023-12-11 [1] CRAN (R 4.3.0)
#>  colorspace     2.1-0   2023-01-23 [1] CRAN (R 4.3.0)
#>  curl           5.2.0   2023-12-08 [1] CRAN (R 4.3.0)
#>  digest         0.6.34  2024-01-11 [1] CRAN (R 4.3.0)
#>  dplyr          1.1.4   2023-11-17 [1] CRAN (R 4.3.0)
#>  evaluate       0.23    2023-11-01 [1] CRAN (R 4.3.0)
#>  fansi          1.0.6   2023-12-08 [1] CRAN (R 4.3.0)
#>  farver         2.1.1   2022-07-06 [1] CRAN (R 4.3.0)
#>  fastmap        1.1.1   2023-02-24 [1] CRAN (R 4.3.0)
#>  fs             1.6.3   2023-07-20 [1] CRAN (R 4.3.0)
#>  generics       0.1.3   2022-07-05 [1] CRAN (R 4.3.0)
#>  ggbreak      * 0.1.2   2023-06-26 [1] CRAN (R 4.3.0)
#>  ggfun          0.1.4   2024-01-19 [1] CRAN (R 4.3.0)
#>  ggplot2      * 3.4.4   2023-10-12 [1] CRAN (R 4.3.0)
#>  ggplotify      0.1.2   2023-08-09 [1] CRAN (R 4.3.0)
#>  glue           1.7.0   2024-01-09 [1] CRAN (R 4.3.0)
#>  gridGraphics   0.5-1   2020-12-13 [1] CRAN (R 4.3.0)
#>  gtable         0.3.4   2023-08-21 [1] CRAN (R 4.3.0)
#>  highr          0.10    2022-12-22 [1] CRAN (R 4.3.0)
#>  htmltools      0.5.7   2023-11-03 [1] CRAN (R 4.3.0)
#>  knitr          1.45    2023-10-30 [1] CRAN (R 4.3.0)
#>  labeling       0.4.3   2023-08-29 [1] CRAN (R 4.3.0)
#>  lifecycle      1.0.4   2023-11-07 [1] CRAN (R 4.3.0)
#>  magrittr       2.0.3   2022-03-30 [1] CRAN (R 4.3.0)
#>  memoise        2.0.1   2021-11-26 [1] CRAN (R 4.3.0)
#>  munsell        0.5.0   2018-06-12 [1] CRAN (R 4.3.0)
#>  patchwork      1.2.0   2024-01-08 [1] CRAN (R 4.3.1)
#>  pillar         1.9.0   2023-03-22 [1] CRAN (R 4.3.0)
#>  pkgconfig      2.0.3   2019-09-22 [1] CRAN (R 4.3.0)
#>  purrr          1.0.2   2023-08-10 [1] CRAN (R 4.3.0)
#>  R.cache        0.16.0  2022-07-21 [1] CRAN (R 4.3.0)
#>  R.methodsS3    1.8.2   2022-06-13 [1] CRAN (R 4.3.0)
#>  R.oo           1.25.0  2022-06-12 [1] CRAN (R 4.3.0)
#>  R.utils        2.12.2  2022-11-11 [1] CRAN (R 4.3.0)
#>  R6             2.5.1   2021-08-19 [1] CRAN (R 4.3.0)
#>  reprex         2.0.2   2022-08-17 [1] CRAN (R 4.3.0)
#>  rlang          1.1.3   2024-01-10 [1] CRAN (R 4.3.0)
#>  rmarkdown      2.25    2023-09-18 [1] CRAN (R 4.3.0)
#>  rstudioapi     0.15.0  2023-07-07 [1] CRAN (R 4.3.0)
#>  scales         1.3.0   2023-11-28 [1] CRAN (R 4.3.1)
#>  sessioninfo    1.2.2   2021-12-06 [1] CRAN (R 4.3.0)
#>  styler         1.10.2  2023-08-29 [1] CRAN (R 4.3.0)
#>  tibble         3.2.1   2023-03-20 [1] CRAN (R 4.3.0)
#>  tidyselect     1.2.0   2022-10-10 [1] CRAN (R 4.3.0)
#>  utf8           1.2.4   2023-10-22 [1] CRAN (R 4.3.0)
#>  vctrs          0.6.5   2023-12-01 [1] CRAN (R 4.3.0)
#>  withr          3.0.0   2024-01-16 [1] CRAN (R 4.3.0)
#>  xfun           0.41    2023-11-01 [1] CRAN (R 4.3.0)
#>  xml2           1.3.5   2023-07-06 [1] CRAN (R 4.3.0)
#>  yaml           2.3.8   2023-12-11 [1] CRAN (R 4.3.0)
#>  yulab.utils    0.1.4   2024-01-28 [1] CRAN (R 4.3.2)
#> 
#>  [1] /Users/ericscott/Library/R/x86_64/4.3/library
#>  [2] /Library/Frameworks/R.framework/Versions/4.3-x86_64/Resources/library
#> 
#> ──────────────────────────────────────────────────────────────────────────────

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants