├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── test-coverage.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── aaa.R ├── compose-.R ├── compose-crux.R ├── compose-ontop.R ├── compose-sandwich.R ├── compose-stack.R ├── gizmo-.R ├── gizmo-barcap.R ├── gizmo-density.R ├── gizmo-grob.R ├── gizmo-histogram.R ├── gizmo-stepcap.R ├── guide-axis-base.R ├── guide-axis-dendro.R ├── guide-axis-nested.R ├── guide-axis-plot.R ├── guide-circles.R ├── guide-colbar.R ├── guide-colring.R ├── guide-colsteps.R ├── guide-legend-base.R ├── guide-legend-cross.R ├── guide-legend-group.R ├── guide-legend-manual.R ├── import-standalone-obj-type.R ├── import-standalone-types-check.R ├── key-.R ├── key-group.R ├── key-other.R ├── key-range.R ├── key-segment.R ├── legendry-package.R ├── primitive-.R ├── primitive-box.R ├── primitive-bracket.R ├── primitive-fence.R ├── primitive-labels.R ├── primitive-line.R ├── primitive-segments.R ├── primitive-spacer.R ├── primitive-ticks.R ├── primitive-title.R ├── scale-dendro.R ├── shapes-brackets.R ├── shapes-caps.R ├── themes.R ├── utils-borrowed.R ├── utils-checks.R ├── utils-ggplot2.R ├── utils-text.R ├── utils.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── legendry.Rproj ├── man ├── bracket_options.Rd ├── cap_options.Rd ├── common_parameters.Rd ├── compose_crux.Rd ├── compose_ontop.Rd ├── compose_sandwich.Rd ├── compose_stack.Rd ├── figures │ ├── README-composition-1.svg │ ├── README-full_guides-1.svg │ ├── README-primitives-1.svg │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-stable.svg │ ├── lifecycle-superseded.svg │ └── logo.png ├── gizmo_barcap.Rd ├── gizmo_density.Rd ├── gizmo_grob.Rd ├── gizmo_histogram.Rd ├── gizmo_stepcap.Rd ├── guide-composition.Rd ├── guide-gizmos.Rd ├── guide-primitives.Rd ├── guide_axis_base.Rd ├── guide_axis_dendro.Rd ├── guide_axis_nested.Rd ├── guide_axis_plot.Rd ├── guide_circles.Rd ├── guide_colbar.Rd ├── guide_colring.Rd ├── guide_colsteps.Rd ├── guide_legend_base.Rd ├── guide_legend_cross.Rd ├── guide_legend_group.Rd ├── guide_legend_manual.Rd ├── key_group.Rd ├── key_range.Rd ├── key_segments.Rd ├── key_specialty.Rd ├── key_standard.Rd ├── legendry-package.Rd ├── legendry_extensions.Rd ├── position_text.Rd ├── primitive_box.Rd ├── primitive_bracket.Rd ├── primitive_fence.Rd ├── primitive_labels.Rd ├── primitive_line.Rd ├── primitive_segments.Rd ├── primitive_spacer.Rd ├── primitive_ticks.Rd ├── primitive_title.Rd ├── scale_x_dendro.Rd └── theme_guide.Rd ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── aaa.md │ ├── compose-crux │ │ └── compose-crux-legend.svg │ ├── compose-ontop │ │ ├── compose-ontop-cartesian.svg │ │ └── compose-ontop-radial.svg │ ├── compose-sandwich │ │ ├── horizontal-sandwich-flipped.svg │ │ ├── horizontal-sandwich.svg │ │ ├── vertical-sandwich-flipped.svg │ │ └── vertical-sandwich.svg │ ├── compose-stack │ │ ├── compose-stack-cartesian.svg │ │ └── compose-stack-radial.svg │ ├── gizmo-barcap │ │ ├── arch-cap-long.svg │ │ ├── arch-cap.svg │ │ ├── ogee-cap-long.svg │ │ ├── ogee-cap.svg │ │ ├── round-cap-long.svg │ │ ├── round-cap.svg │ │ ├── triangle-cap-long.svg │ │ └── triangle-cap.svg │ ├── gizmo-grob │ │ ├── gizmo-grob-cartesian.svg │ │ └── gizmo-grob-legends.svg │ ├── guide-axis-custom │ │ ├── guide-axis-base-cartesian.svg │ │ └── guide-axis-base-radial.svg │ ├── guide-axis-nested │ │ ├── guide-axis-base-cartesian.svg │ │ └── guide-axis-base-radial.svg │ ├── guide-axis-plot.md │ ├── guide-axis-plot │ │ └── guide-axis-plot.svg │ ├── guide-circles.md │ ├── guide-circles │ │ ├── guide-circles-text-locations.svg │ │ └── guide-circles-text-placement.svg │ ├── guide-colbar │ │ ├── bottom-position.svg │ │ ├── colbar-side-titles.svg │ │ ├── left-position.svg │ │ ├── right-position.svg │ │ └── top-position.svg │ ├── guide-colring │ │ ├── conical.svg │ │ ├── inner-labels.svg │ │ ├── open-ring.svg │ │ ├── resized-ring.svg │ │ └── standard-ring.svg │ ├── guide-colsteps │ │ ├── bottom-position.svg │ │ ├── left-position.svg │ │ ├── right-position.svg │ │ └── top-position.svg │ ├── guide-legend-base │ │ ├── custom-legend-design.svg │ │ └── standard-legend-design.svg │ ├── guide-legend-cross │ │ ├── legend-cross-orientations.svg │ │ ├── legend-cross-single-scale.svg │ │ ├── legend-cross-subtitles-bottom-right.svg │ │ ├── legend-cross-subtitles-top-left.svg │ │ ├── legend-cross-two-scales-swapped-order.svg │ │ ├── legend-cross-two-scales.svg │ │ └── legend-cross-with-double-reverse.svg │ ├── guide-legend-group │ │ ├── bottom-bottomtitle.svg │ │ ├── bottom-lefttitle.svg │ │ ├── bottom-righttitle.svg │ │ ├── bottom-toptitle.svg │ │ ├── right-bottomtitle.svg │ │ ├── right-lefttitle.svg │ │ ├── right-righttitle.svg │ │ └── right-toptitle.svg │ ├── guide-legend-manual.md │ ├── guide-legend-manual │ │ └── manual-legend.svg │ ├── key-.md │ ├── key-group.md │ ├── key-range.md │ ├── primitive-box │ │ ├── primitive-box-cartesian.svg │ │ ├── primitive-box-legend.svg │ │ └── primitive-box-radial.svg │ ├── primitive-bracket │ │ ├── primitive-bracket-cartesian.svg │ │ ├── primitive-bracket-legend.svg │ │ └── primitive-bracket-radial.svg │ ├── primitive-fence │ │ ├── primitive-facet-legend.svg │ │ ├── primitive-fence-cartesian.svg │ │ └── primitive-fence-radial.svg │ ├── primitive-labels.md │ ├── primitive-labels │ │ ├── primitive-labels-cartesian.svg │ │ ├── primitive-labels-legend.svg │ │ └── primitive-labels-radial.svg │ ├── primitive-line.md │ ├── primitive-line │ │ ├── primitive-line-cartesian.svg │ │ ├── primitive-line-legend.svg │ │ └── primitive-line-radial.svg │ ├── primitive-segments │ │ ├── primitive-segments-cartesian.svg │ │ ├── primitive-segments-legend.svg │ │ └── primitive-segments-radial.svg │ ├── primitive-spacer │ │ ├── primitive-spacer-cartesian.svg │ │ ├── primitive-spacer-legend.svg │ │ └── primitive-spacer-radial.svg │ ├── primitive-ticks │ │ ├── primitive-ticks-cartesian.svg │ │ ├── primitive-ticks-legend.svg │ │ └── primitive-ticks-radial.svg │ ├── primitive-title │ │ ├── primitive-title-cartesian.svg │ │ ├── primitive-title-legend.svg │ │ └── primitive-title-radial.svg │ ├── scale-dendro │ │ ├── scale-dendro-cartesian.svg │ │ └── scale-dendro-radial.svg │ └── utils-checks.md │ ├── test-aaa.R │ ├── test-compose-.R │ ├── test-compose-crux.R │ ├── test-compose-ontop.R │ ├── test-compose-sandwich.R │ ├── test-compose-stack.R │ ├── test-gizmo-barcap.R │ ├── test-gizmo-density.R │ ├── test-gizmo-grob.R │ ├── test-gizmo-histogram.R │ ├── test-gizmo-stepcap.R │ ├── test-guide-axis-custom.R │ ├── test-guide-axis-dendro.R │ ├── test-guide-axis-nested.R │ ├── test-guide-axis-plot.R │ ├── test-guide-circles.R │ ├── test-guide-colbar.R │ ├── test-guide-colring.R │ ├── test-guide-colsteps.R │ ├── test-guide-legend-base.R │ ├── test-guide-legend-cross.R │ ├── test-guide-legend-group.R │ ├── test-guide-legend-manual.R │ ├── test-key-.R │ ├── test-key-group.R │ ├── test-key-other.R │ ├── test-key-range.R │ ├── test-key-segment.R │ ├── test-primitive-.R │ ├── test-primitive-box.R │ ├── test-primitive-bracket.R │ ├── test-primitive-fence.R │ ├── test-primitive-labels.R │ ├── test-primitive-line.R │ ├── test-primitive-segments.R │ ├── test-primitive-spacer.R │ ├── test-primitive-ticks.R │ ├── test-primitive-title.R │ ├── test-scale-dendro.R │ ├── test-shapes-brackets.R │ ├── test-shapes-caps.R │ ├── test-theme-registry.R │ ├── test-themes.R │ ├── test-utils-checks.R │ ├── test-utils-text.R │ └── test-utils.R └── vignettes ├── .gitignore └── articles ├── .gitignore ├── gallery.Rmd ├── guide_composition.Rmd ├── keys.Rmd └── tour.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: Teun van den Brand 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aaa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/aaa.R -------------------------------------------------------------------------------- /R/compose-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/compose-.R -------------------------------------------------------------------------------- /R/compose-crux.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/compose-crux.R -------------------------------------------------------------------------------- /R/compose-ontop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/compose-ontop.R -------------------------------------------------------------------------------- /R/compose-sandwich.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/compose-sandwich.R -------------------------------------------------------------------------------- /R/compose-stack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/compose-stack.R -------------------------------------------------------------------------------- /R/gizmo-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/gizmo-.R -------------------------------------------------------------------------------- /R/gizmo-barcap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/gizmo-barcap.R -------------------------------------------------------------------------------- /R/gizmo-density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/gizmo-density.R -------------------------------------------------------------------------------- /R/gizmo-grob.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/gizmo-grob.R -------------------------------------------------------------------------------- /R/gizmo-histogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/gizmo-histogram.R -------------------------------------------------------------------------------- /R/gizmo-stepcap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/gizmo-stepcap.R -------------------------------------------------------------------------------- /R/guide-axis-base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/guide-axis-base.R -------------------------------------------------------------------------------- /R/guide-axis-dendro.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/guide-axis-dendro.R -------------------------------------------------------------------------------- /R/guide-axis-nested.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/guide-axis-nested.R -------------------------------------------------------------------------------- /R/guide-axis-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/guide-axis-plot.R -------------------------------------------------------------------------------- /R/guide-circles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/guide-circles.R -------------------------------------------------------------------------------- /R/guide-colbar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/guide-colbar.R -------------------------------------------------------------------------------- /R/guide-colring.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/guide-colring.R -------------------------------------------------------------------------------- /R/guide-colsteps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/guide-colsteps.R -------------------------------------------------------------------------------- /R/guide-legend-base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/guide-legend-base.R -------------------------------------------------------------------------------- /R/guide-legend-cross.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/guide-legend-cross.R -------------------------------------------------------------------------------- /R/guide-legend-group.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/guide-legend-group.R -------------------------------------------------------------------------------- /R/guide-legend-manual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/guide-legend-manual.R -------------------------------------------------------------------------------- /R/import-standalone-obj-type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/import-standalone-obj-type.R -------------------------------------------------------------------------------- /R/import-standalone-types-check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/import-standalone-types-check.R -------------------------------------------------------------------------------- /R/key-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/key-.R -------------------------------------------------------------------------------- /R/key-group.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/key-group.R -------------------------------------------------------------------------------- /R/key-other.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/key-other.R -------------------------------------------------------------------------------- /R/key-range.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/key-range.R -------------------------------------------------------------------------------- /R/key-segment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/key-segment.R -------------------------------------------------------------------------------- /R/legendry-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/legendry-package.R -------------------------------------------------------------------------------- /R/primitive-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/primitive-.R -------------------------------------------------------------------------------- /R/primitive-box.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/primitive-box.R -------------------------------------------------------------------------------- /R/primitive-bracket.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/primitive-bracket.R -------------------------------------------------------------------------------- /R/primitive-fence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/primitive-fence.R -------------------------------------------------------------------------------- /R/primitive-labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/primitive-labels.R -------------------------------------------------------------------------------- /R/primitive-line.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/primitive-line.R -------------------------------------------------------------------------------- /R/primitive-segments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/primitive-segments.R -------------------------------------------------------------------------------- /R/primitive-spacer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/primitive-spacer.R -------------------------------------------------------------------------------- /R/primitive-ticks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/primitive-ticks.R -------------------------------------------------------------------------------- /R/primitive-title.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/primitive-title.R -------------------------------------------------------------------------------- /R/scale-dendro.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/scale-dendro.R -------------------------------------------------------------------------------- /R/shapes-brackets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/shapes-brackets.R -------------------------------------------------------------------------------- /R/shapes-caps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/shapes-caps.R -------------------------------------------------------------------------------- /R/themes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/themes.R -------------------------------------------------------------------------------- /R/utils-borrowed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/utils-borrowed.R -------------------------------------------------------------------------------- /R/utils-checks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/utils-checks.R -------------------------------------------------------------------------------- /R/utils-ggplot2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/utils-ggplot2.R -------------------------------------------------------------------------------- /R/utils-text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/utils-text.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- 1 | .onLoad <- function(lib, pkg) { 2 | run_on_load() # nocov 3 | } 4 | -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/cran-comments.md -------------------------------------------------------------------------------- /legendry.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/legendry.Rproj -------------------------------------------------------------------------------- /man/bracket_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/bracket_options.Rd -------------------------------------------------------------------------------- /man/cap_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/cap_options.Rd -------------------------------------------------------------------------------- /man/common_parameters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/common_parameters.Rd -------------------------------------------------------------------------------- /man/compose_crux.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/compose_crux.Rd -------------------------------------------------------------------------------- /man/compose_ontop.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/compose_ontop.Rd -------------------------------------------------------------------------------- /man/compose_sandwich.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/compose_sandwich.Rd -------------------------------------------------------------------------------- /man/compose_stack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/compose_stack.Rd -------------------------------------------------------------------------------- /man/figures/README-composition-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/figures/README-composition-1.svg -------------------------------------------------------------------------------- /man/figures/README-full_guides-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/figures/README-full_guides-1.svg -------------------------------------------------------------------------------- /man/figures/README-primitives-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/figures/README-primitives-1.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/gizmo_barcap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/gizmo_barcap.Rd -------------------------------------------------------------------------------- /man/gizmo_density.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/gizmo_density.Rd -------------------------------------------------------------------------------- /man/gizmo_grob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/gizmo_grob.Rd -------------------------------------------------------------------------------- /man/gizmo_histogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/gizmo_histogram.Rd -------------------------------------------------------------------------------- /man/gizmo_stepcap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/gizmo_stepcap.Rd -------------------------------------------------------------------------------- /man/guide-composition.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide-composition.Rd -------------------------------------------------------------------------------- /man/guide-gizmos.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide-gizmos.Rd -------------------------------------------------------------------------------- /man/guide-primitives.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide-primitives.Rd -------------------------------------------------------------------------------- /man/guide_axis_base.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide_axis_base.Rd -------------------------------------------------------------------------------- /man/guide_axis_dendro.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide_axis_dendro.Rd -------------------------------------------------------------------------------- /man/guide_axis_nested.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide_axis_nested.Rd -------------------------------------------------------------------------------- /man/guide_axis_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide_axis_plot.Rd -------------------------------------------------------------------------------- /man/guide_circles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide_circles.Rd -------------------------------------------------------------------------------- /man/guide_colbar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide_colbar.Rd -------------------------------------------------------------------------------- /man/guide_colring.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide_colring.Rd -------------------------------------------------------------------------------- /man/guide_colsteps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide_colsteps.Rd -------------------------------------------------------------------------------- /man/guide_legend_base.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide_legend_base.Rd -------------------------------------------------------------------------------- /man/guide_legend_cross.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide_legend_cross.Rd -------------------------------------------------------------------------------- /man/guide_legend_group.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide_legend_group.Rd -------------------------------------------------------------------------------- /man/guide_legend_manual.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/guide_legend_manual.Rd -------------------------------------------------------------------------------- /man/key_group.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/key_group.Rd -------------------------------------------------------------------------------- /man/key_range.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/key_range.Rd -------------------------------------------------------------------------------- /man/key_segments.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/key_segments.Rd -------------------------------------------------------------------------------- /man/key_specialty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/key_specialty.Rd -------------------------------------------------------------------------------- /man/key_standard.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/key_standard.Rd -------------------------------------------------------------------------------- /man/legendry-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/legendry-package.Rd -------------------------------------------------------------------------------- /man/legendry_extensions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/legendry_extensions.Rd -------------------------------------------------------------------------------- /man/position_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/position_text.Rd -------------------------------------------------------------------------------- /man/primitive_box.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/primitive_box.Rd -------------------------------------------------------------------------------- /man/primitive_bracket.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/primitive_bracket.Rd -------------------------------------------------------------------------------- /man/primitive_fence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/primitive_fence.Rd -------------------------------------------------------------------------------- /man/primitive_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/primitive_labels.Rd -------------------------------------------------------------------------------- /man/primitive_line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/primitive_line.Rd -------------------------------------------------------------------------------- /man/primitive_segments.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/primitive_segments.Rd -------------------------------------------------------------------------------- /man/primitive_spacer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/primitive_spacer.Rd -------------------------------------------------------------------------------- /man/primitive_ticks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/primitive_ticks.Rd -------------------------------------------------------------------------------- /man/primitive_title.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/primitive_title.Rd -------------------------------------------------------------------------------- /man/scale_x_dendro.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/scale_x_dendro.Rd -------------------------------------------------------------------------------- /man/theme_guide.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/man/theme_guide.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/aaa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/aaa.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/compose-crux/compose-crux-legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/compose-crux/compose-crux-legend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/compose-ontop/compose-ontop-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/compose-ontop/compose-ontop-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/compose-ontop/compose-ontop-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/compose-ontop/compose-ontop-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/compose-sandwich/horizontal-sandwich-flipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/compose-sandwich/horizontal-sandwich-flipped.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/compose-sandwich/horizontal-sandwich.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/compose-sandwich/horizontal-sandwich.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/compose-sandwich/vertical-sandwich-flipped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/compose-sandwich/vertical-sandwich-flipped.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/compose-sandwich/vertical-sandwich.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/compose-sandwich/vertical-sandwich.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/compose-stack/compose-stack-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/compose-stack/compose-stack-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/compose-stack/compose-stack-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/compose-stack/compose-stack-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gizmo-barcap/arch-cap-long.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/gizmo-barcap/arch-cap-long.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gizmo-barcap/arch-cap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/gizmo-barcap/arch-cap.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gizmo-barcap/ogee-cap-long.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/gizmo-barcap/ogee-cap-long.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gizmo-barcap/ogee-cap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/gizmo-barcap/ogee-cap.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gizmo-barcap/round-cap-long.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/gizmo-barcap/round-cap-long.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gizmo-barcap/round-cap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/gizmo-barcap/round-cap.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gizmo-barcap/triangle-cap-long.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/gizmo-barcap/triangle-cap-long.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gizmo-barcap/triangle-cap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/gizmo-barcap/triangle-cap.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gizmo-grob/gizmo-grob-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/gizmo-grob/gizmo-grob-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gizmo-grob/gizmo-grob-legends.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/gizmo-grob/gizmo-grob-legends.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-axis-custom/guide-axis-base-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-axis-custom/guide-axis-base-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-axis-custom/guide-axis-base-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-axis-custom/guide-axis-base-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-axis-nested/guide-axis-base-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-axis-nested/guide-axis-base-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-axis-nested/guide-axis-base-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-axis-nested/guide-axis-base-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-axis-plot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-axis-plot.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-axis-plot/guide-axis-plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-axis-plot/guide-axis-plot.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-circles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-circles.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-circles/guide-circles-text-locations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-circles/guide-circles-text-locations.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-circles/guide-circles-text-placement.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-circles/guide-circles-text-placement.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colbar/bottom-position.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colbar/bottom-position.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colbar/colbar-side-titles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colbar/colbar-side-titles.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colbar/left-position.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colbar/left-position.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colbar/right-position.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colbar/right-position.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colbar/top-position.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colbar/top-position.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colring/conical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colring/conical.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colring/inner-labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colring/inner-labels.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colring/open-ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colring/open-ring.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colring/resized-ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colring/resized-ring.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colring/standard-ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colring/standard-ring.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colsteps/bottom-position.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colsteps/bottom-position.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colsteps/left-position.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colsteps/left-position.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colsteps/right-position.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colsteps/right-position.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-colsteps/top-position.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-colsteps/top-position.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-base/custom-legend-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-base/custom-legend-design.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-base/standard-legend-design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-base/standard-legend-design.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-cross/legend-cross-orientations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-cross/legend-cross-orientations.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-cross/legend-cross-single-scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-cross/legend-cross-single-scale.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-cross/legend-cross-subtitles-bottom-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-cross/legend-cross-subtitles-bottom-right.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-cross/legend-cross-subtitles-top-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-cross/legend-cross-subtitles-top-left.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-cross/legend-cross-two-scales-swapped-order.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-cross/legend-cross-two-scales-swapped-order.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-cross/legend-cross-two-scales.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-cross/legend-cross-two-scales.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-cross/legend-cross-with-double-reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-cross/legend-cross-with-double-reverse.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-group/bottom-bottomtitle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-group/bottom-bottomtitle.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-group/bottom-lefttitle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-group/bottom-lefttitle.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-group/bottom-righttitle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-group/bottom-righttitle.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-group/bottom-toptitle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-group/bottom-toptitle.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-group/right-bottomtitle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-group/right-bottomtitle.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-group/right-lefttitle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-group/right-lefttitle.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-group/right-righttitle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-group/right-righttitle.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-group/right-toptitle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-group/right-toptitle.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-manual.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/guide-legend-manual/manual-legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/guide-legend-manual/manual-legend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/key-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/key-.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/key-group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/key-group.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/key-range.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/key-range.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-box/primitive-box-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-box/primitive-box-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-box/primitive-box-legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-box/primitive-box-legend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-box/primitive-box-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-box/primitive-box-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-bracket/primitive-bracket-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-bracket/primitive-bracket-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-bracket/primitive-bracket-legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-bracket/primitive-bracket-legend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-bracket/primitive-bracket-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-bracket/primitive-bracket-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-fence/primitive-facet-legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-fence/primitive-facet-legend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-fence/primitive-fence-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-fence/primitive-fence-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-fence/primitive-fence-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-fence/primitive-fence-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-labels.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-labels/primitive-labels-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-labels/primitive-labels-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-labels/primitive-labels-legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-labels/primitive-labels-legend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-labels/primitive-labels-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-labels/primitive-labels-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-line.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-line/primitive-line-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-line/primitive-line-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-line/primitive-line-legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-line/primitive-line-legend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-line/primitive-line-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-line/primitive-line-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-segments/primitive-segments-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-segments/primitive-segments-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-segments/primitive-segments-legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-segments/primitive-segments-legend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-segments/primitive-segments-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-segments/primitive-segments-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-spacer/primitive-spacer-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-spacer/primitive-spacer-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-spacer/primitive-spacer-legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-spacer/primitive-spacer-legend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-spacer/primitive-spacer-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-spacer/primitive-spacer-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-ticks/primitive-ticks-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-ticks/primitive-ticks-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-ticks/primitive-ticks-legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-ticks/primitive-ticks-legend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-ticks/primitive-ticks-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-ticks/primitive-ticks-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-title/primitive-title-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-title/primitive-title-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-title/primitive-title-legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-title/primitive-title-legend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/primitive-title/primitive-title-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/primitive-title/primitive-title-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-dendro/scale-dendro-cartesian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/scale-dendro/scale-dendro-cartesian.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale-dendro/scale-dendro-radial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/scale-dendro/scale-dendro-radial.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/utils-checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/_snaps/utils-checks.md -------------------------------------------------------------------------------- /tests/testthat/test-aaa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-aaa.R -------------------------------------------------------------------------------- /tests/testthat/test-compose-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-compose-.R -------------------------------------------------------------------------------- /tests/testthat/test-compose-crux.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-compose-crux.R -------------------------------------------------------------------------------- /tests/testthat/test-compose-ontop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-compose-ontop.R -------------------------------------------------------------------------------- /tests/testthat/test-compose-sandwich.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-compose-sandwich.R -------------------------------------------------------------------------------- /tests/testthat/test-compose-stack.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-compose-stack.R -------------------------------------------------------------------------------- /tests/testthat/test-gizmo-barcap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-gizmo-barcap.R -------------------------------------------------------------------------------- /tests/testthat/test-gizmo-density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-gizmo-density.R -------------------------------------------------------------------------------- /tests/testthat/test-gizmo-grob.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-gizmo-grob.R -------------------------------------------------------------------------------- /tests/testthat/test-gizmo-histogram.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-gizmo-histogram.R -------------------------------------------------------------------------------- /tests/testthat/test-gizmo-stepcap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-gizmo-stepcap.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-axis-custom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-guide-axis-custom.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-axis-dendro.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-guide-axis-dendro.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-axis-nested.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-guide-axis-nested.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-axis-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-guide-axis-plot.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-circles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-guide-circles.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-colbar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-guide-colbar.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-colring.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-guide-colring.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-colsteps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-guide-colsteps.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-legend-base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-guide-legend-base.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-legend-cross.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-guide-legend-cross.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-legend-group.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-guide-legend-group.R -------------------------------------------------------------------------------- /tests/testthat/test-guide-legend-manual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-guide-legend-manual.R -------------------------------------------------------------------------------- /tests/testthat/test-key-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-key-.R -------------------------------------------------------------------------------- /tests/testthat/test-key-group.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-key-group.R -------------------------------------------------------------------------------- /tests/testthat/test-key-other.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-key-other.R -------------------------------------------------------------------------------- /tests/testthat/test-key-range.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-key-range.R -------------------------------------------------------------------------------- /tests/testthat/test-key-segment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-key-segment.R -------------------------------------------------------------------------------- /tests/testthat/test-primitive-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-primitive-.R -------------------------------------------------------------------------------- /tests/testthat/test-primitive-box.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-primitive-box.R -------------------------------------------------------------------------------- /tests/testthat/test-primitive-bracket.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-primitive-bracket.R -------------------------------------------------------------------------------- /tests/testthat/test-primitive-fence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-primitive-fence.R -------------------------------------------------------------------------------- /tests/testthat/test-primitive-labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-primitive-labels.R -------------------------------------------------------------------------------- /tests/testthat/test-primitive-line.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-primitive-line.R -------------------------------------------------------------------------------- /tests/testthat/test-primitive-segments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-primitive-segments.R -------------------------------------------------------------------------------- /tests/testthat/test-primitive-spacer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-primitive-spacer.R -------------------------------------------------------------------------------- /tests/testthat/test-primitive-ticks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-primitive-ticks.R -------------------------------------------------------------------------------- /tests/testthat/test-primitive-title.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-primitive-title.R -------------------------------------------------------------------------------- /tests/testthat/test-scale-dendro.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-scale-dendro.R -------------------------------------------------------------------------------- /tests/testthat/test-shapes-brackets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-shapes-brackets.R -------------------------------------------------------------------------------- /tests/testthat/test-shapes-caps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-shapes-caps.R -------------------------------------------------------------------------------- /tests/testthat/test-theme-registry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-theme-registry.R -------------------------------------------------------------------------------- /tests/testthat/test-themes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-themes.R -------------------------------------------------------------------------------- /tests/testthat/test-utils-checks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-utils-checks.R -------------------------------------------------------------------------------- /tests/testthat/test-utils-text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-utils-text.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/articles/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/articles/gallery.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/vignettes/articles/gallery.Rmd -------------------------------------------------------------------------------- /vignettes/articles/guide_composition.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/vignettes/articles/guide_composition.Rmd -------------------------------------------------------------------------------- /vignettes/articles/keys.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/vignettes/articles/keys.Rmd -------------------------------------------------------------------------------- /vignettes/articles/tour.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teunbrand/legendry/HEAD/vignettes/articles/tour.Rmd --------------------------------------------------------------------------------