├── .Rbuildignore ├── .Rprofile ├── .dockerignore ├── .gitattributes ├── .gitignore ├── DESCRIPTION ├── Dockerfile ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── axis-annotation.r ├── brackets.R ├── coord-capped.r ├── coord-flex.r ├── dot.r ├── facet-rep-lab.r ├── facet-wrap.r ├── geom-pointline.r ├── geom-siderange.r ├── ggplot2.r ├── grob_utils.r ├── gtable_show-.r ├── guides-axis.r ├── legends.r ├── lemon-plot.r ├── lemon.r ├── lemon_print.r └── scale-symmetric.r ├── README.Rmd ├── README.md ├── README ├── brackets_demo-1.png ├── domain_axis_lines-1.png ├── domain_facets-1.png ├── domain_pointline-1.png ├── facets-1.png ├── g_legend-1.png ├── g_legend-2.png ├── geom_pointline.png ├── geom_pointline_demo-1.png ├── grid_arrange_shared_legend-1.png ├── reposition_legend-1.png ├── reposition_legend-2.png └── usage1-1.png ├── cran-comments.md ├── devel ├── test_adding_aes.R ├── test_custom_secondary_axis.R └── test_hijack_building.R ├── inst └── examples │ ├── axis-annotation-ex.r │ ├── geom-pointline-ex.r │ └── geom-siderange-ex.r ├── man ├── annotate_axis.Rd ├── brackets.Rd ├── coord_capped.Rd ├── coord_flex.Rd ├── dot.Rd ├── facet_rep.Rd ├── g_legend.Rd ├── geom_pointpath.Rd ├── geom_siderange.Rd ├── get_panel_range.Rd ├── ggplot2-non-exports.Rd ├── grid_arrange_shared_legend.Rd ├── gtable_show.Rd ├── guidebox_as_column.Rd ├── is.small.Rd ├── lemon-ggproto.Rd ├── lemon.Rd ├── lemon_plot.Rd ├── lemon_print.Rd ├── remove_labels_from_axis.Rd ├── render_gpar.Rd ├── reposition_legend.Rd └── scale_symmetric.Rd ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── brackets │ │ └── brackets-on-all-four-sides.svg │ ├── caps │ │ └── capped-axes.svg │ ├── facet │ │ ├── facet-rep-grid-spacing.svg │ │ ├── facet-rep-wrap-spacing-2.svg │ │ └── facet-rep-wrap-spacing.svg │ └── facet_aux │ │ ├── facet-rep-grid.svg │ │ └── facet-rep-wrap.svg │ ├── test_brackets.R │ ├── test_caps.R │ ├── test_coord_.R │ ├── test_facet.R │ ├── test_facet_aux.R │ ├── test_geom-pointline.r │ └── test_lemon_plot.r └── vignettes ├── capped-axes.R ├── capped-axes.Rmd ├── capped-axes.html ├── facet-rep-labels.Rmd ├── geoms.Rmd ├── gtable_show_lemonade.Rmd ├── legends.R ├── legends.Rmd ├── legends.html ├── lemon_print.Rmd ├── lemon_print_capture.png └── lemon_print_capture2.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/.Rprofile -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | ** 2 | 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/axis-annotation.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/axis-annotation.r -------------------------------------------------------------------------------- /R/brackets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/brackets.R -------------------------------------------------------------------------------- /R/coord-capped.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/coord-capped.r -------------------------------------------------------------------------------- /R/coord-flex.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/coord-flex.r -------------------------------------------------------------------------------- /R/dot.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/dot.r -------------------------------------------------------------------------------- /R/facet-rep-lab.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/facet-rep-lab.r -------------------------------------------------------------------------------- /R/facet-wrap.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/facet-wrap.r -------------------------------------------------------------------------------- /R/geom-pointline.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/geom-pointline.r -------------------------------------------------------------------------------- /R/geom-siderange.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/geom-siderange.r -------------------------------------------------------------------------------- /R/ggplot2.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/ggplot2.r -------------------------------------------------------------------------------- /R/grob_utils.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/grob_utils.r -------------------------------------------------------------------------------- /R/gtable_show-.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/gtable_show-.r -------------------------------------------------------------------------------- /R/guides-axis.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/guides-axis.r -------------------------------------------------------------------------------- /R/legends.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/legends.r -------------------------------------------------------------------------------- /R/lemon-plot.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/lemon-plot.r -------------------------------------------------------------------------------- /R/lemon.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/lemon.r -------------------------------------------------------------------------------- /R/lemon_print.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/lemon_print.r -------------------------------------------------------------------------------- /R/scale-symmetric.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/R/scale-symmetric.r -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README.md -------------------------------------------------------------------------------- /README/brackets_demo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README/brackets_demo-1.png -------------------------------------------------------------------------------- /README/domain_axis_lines-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README/domain_axis_lines-1.png -------------------------------------------------------------------------------- /README/domain_facets-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README/domain_facets-1.png -------------------------------------------------------------------------------- /README/domain_pointline-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README/domain_pointline-1.png -------------------------------------------------------------------------------- /README/facets-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README/facets-1.png -------------------------------------------------------------------------------- /README/g_legend-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README/g_legend-1.png -------------------------------------------------------------------------------- /README/g_legend-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README/g_legend-2.png -------------------------------------------------------------------------------- /README/geom_pointline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README/geom_pointline.png -------------------------------------------------------------------------------- /README/geom_pointline_demo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README/geom_pointline_demo-1.png -------------------------------------------------------------------------------- /README/grid_arrange_shared_legend-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README/grid_arrange_shared_legend-1.png -------------------------------------------------------------------------------- /README/reposition_legend-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README/reposition_legend-1.png -------------------------------------------------------------------------------- /README/reposition_legend-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README/reposition_legend-2.png -------------------------------------------------------------------------------- /README/usage1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/README/usage1-1.png -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/cran-comments.md -------------------------------------------------------------------------------- /devel/test_adding_aes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/devel/test_adding_aes.R -------------------------------------------------------------------------------- /devel/test_custom_secondary_axis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/devel/test_custom_secondary_axis.R -------------------------------------------------------------------------------- /devel/test_hijack_building.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/devel/test_hijack_building.R -------------------------------------------------------------------------------- /inst/examples/axis-annotation-ex.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/inst/examples/axis-annotation-ex.r -------------------------------------------------------------------------------- /inst/examples/geom-pointline-ex.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/inst/examples/geom-pointline-ex.r -------------------------------------------------------------------------------- /inst/examples/geom-siderange-ex.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/inst/examples/geom-siderange-ex.r -------------------------------------------------------------------------------- /man/annotate_axis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/annotate_axis.Rd -------------------------------------------------------------------------------- /man/brackets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/brackets.Rd -------------------------------------------------------------------------------- /man/coord_capped.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/coord_capped.Rd -------------------------------------------------------------------------------- /man/coord_flex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/coord_flex.Rd -------------------------------------------------------------------------------- /man/dot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/dot.Rd -------------------------------------------------------------------------------- /man/facet_rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/facet_rep.Rd -------------------------------------------------------------------------------- /man/g_legend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/g_legend.Rd -------------------------------------------------------------------------------- /man/geom_pointpath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/geom_pointpath.Rd -------------------------------------------------------------------------------- /man/geom_siderange.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/geom_siderange.Rd -------------------------------------------------------------------------------- /man/get_panel_range.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/get_panel_range.Rd -------------------------------------------------------------------------------- /man/ggplot2-non-exports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/ggplot2-non-exports.Rd -------------------------------------------------------------------------------- /man/grid_arrange_shared_legend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/grid_arrange_shared_legend.Rd -------------------------------------------------------------------------------- /man/gtable_show.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/gtable_show.Rd -------------------------------------------------------------------------------- /man/guidebox_as_column.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/guidebox_as_column.Rd -------------------------------------------------------------------------------- /man/is.small.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/is.small.Rd -------------------------------------------------------------------------------- /man/lemon-ggproto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/lemon-ggproto.Rd -------------------------------------------------------------------------------- /man/lemon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/lemon.Rd -------------------------------------------------------------------------------- /man/lemon_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/lemon_plot.Rd -------------------------------------------------------------------------------- /man/lemon_print.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/lemon_print.Rd -------------------------------------------------------------------------------- /man/remove_labels_from_axis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/remove_labels_from_axis.Rd -------------------------------------------------------------------------------- /man/render_gpar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/render_gpar.Rd -------------------------------------------------------------------------------- /man/reposition_legend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/reposition_legend.Rd -------------------------------------------------------------------------------- /man/scale_symmetric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/man/scale_symmetric.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/brackets/brackets-on-all-four-sides.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/_snaps/brackets/brackets-on-all-four-sides.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/caps/capped-axes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/_snaps/caps/capped-axes.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/facet/facet-rep-grid-spacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/_snaps/facet/facet-rep-grid-spacing.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/facet/facet-rep-wrap-spacing-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/_snaps/facet/facet-rep-wrap-spacing-2.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/facet/facet-rep-wrap-spacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/_snaps/facet/facet-rep-wrap-spacing.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/facet_aux/facet-rep-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/_snaps/facet_aux/facet-rep-grid.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/facet_aux/facet-rep-wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/_snaps/facet_aux/facet-rep-wrap.svg -------------------------------------------------------------------------------- /tests/testthat/test_brackets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/test_brackets.R -------------------------------------------------------------------------------- /tests/testthat/test_caps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/test_caps.R -------------------------------------------------------------------------------- /tests/testthat/test_coord_.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/test_coord_.R -------------------------------------------------------------------------------- /tests/testthat/test_facet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/test_facet.R -------------------------------------------------------------------------------- /tests/testthat/test_facet_aux.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/test_facet_aux.R -------------------------------------------------------------------------------- /tests/testthat/test_geom-pointline.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/test_geom-pointline.r -------------------------------------------------------------------------------- /tests/testthat/test_lemon_plot.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/tests/testthat/test_lemon_plot.r -------------------------------------------------------------------------------- /vignettes/capped-axes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/vignettes/capped-axes.R -------------------------------------------------------------------------------- /vignettes/capped-axes.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/vignettes/capped-axes.Rmd -------------------------------------------------------------------------------- /vignettes/capped-axes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/vignettes/capped-axes.html -------------------------------------------------------------------------------- /vignettes/facet-rep-labels.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/vignettes/facet-rep-labels.Rmd -------------------------------------------------------------------------------- /vignettes/geoms.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/vignettes/geoms.Rmd -------------------------------------------------------------------------------- /vignettes/gtable_show_lemonade.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/vignettes/gtable_show_lemonade.Rmd -------------------------------------------------------------------------------- /vignettes/legends.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/vignettes/legends.R -------------------------------------------------------------------------------- /vignettes/legends.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/vignettes/legends.Rmd -------------------------------------------------------------------------------- /vignettes/legends.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/vignettes/legends.html -------------------------------------------------------------------------------- /vignettes/lemon_print.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/vignettes/lemon_print.Rmd -------------------------------------------------------------------------------- /vignettes/lemon_print_capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/vignettes/lemon_print_capture.png -------------------------------------------------------------------------------- /vignettes/lemon_print_capture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanedwards/lemon/HEAD/vignettes/lemon_print_capture2.png --------------------------------------------------------------------------------