├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── a-rect.R ├── data.R ├── expect_doppelganger.R ├── geom_treemap.R ├── geom_treemap_subgroup_border.R ├── geom_treemap_subgroup_text.R ├── geom_treemap_text.R ├── ggplotify.R ├── treemap_fixed.R ├── treemap_squarified.R ├── treemapify-package.R ├── treemapify.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── data └── G20.rda ├── docs ├── 404.html ├── articles │ ├── index.html │ ├── introduction-to-treemapify.html │ └── introduction-to-treemapify_files │ │ ├── anchor-sections-1.0 │ │ ├── anchor-sections.css │ │ └── anchor-sections.js │ │ ├── figure-html │ │ ├── basic_treemap-1.png │ │ ├── geom_treemap_text-1.png │ │ ├── many_subgroups-1.png │ │ ├── multiple_subgrouped_treemap-1.png │ │ └── subgrouped_treemap-1.png │ │ └── header-attrs-2.5 │ │ └── header-attrs.js ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── G20.html │ ├── Rplot001.png │ ├── draw_key_rrect.html │ ├── figures │ ├── README-basic_treemap-1.png │ ├── README-complex_treemap-1.png │ ├── README-geom_treemap_text-1.png │ ├── README-multiple_subgrouped_treemap-1.png │ ├── README-subgrouped_treemap-1.png │ └── animated_treemap.gif │ ├── geom_treemap-1.png │ ├── geom_treemap.html │ ├── geom_treemap_subgroup_border-1.png │ ├── geom_treemap_subgroup_border.html │ ├── geom_treemap_subgroup_text-1.png │ ├── geom_treemap_subgroup_text.html │ ├── geom_treemap_text-1.png │ ├── geom_treemap_text.html │ ├── index.html │ └── treemapify.html ├── inst └── WORDLIST ├── man ├── G20.Rd ├── draw_key_rrect.Rd ├── figures │ ├── README-basic_treemap-1.png │ ├── README-complex_treemap-1.png │ ├── README-geom_treemap_text-1.png │ ├── README-multiple_subgrouped_treemap-1.png │ ├── README-subgrouped_treemap-1.png │ └── animated_treemap.gif ├── geom_treemap.Rd ├── geom_treemap_subgroup_border.Rd ├── geom_treemap_subgroup_text.Rd ├── geom_treemap_text.Rd ├── treemapify-ggproto.Rd ├── treemapify-package.Rd └── treemapify.Rd ├── tests ├── spelling.R ├── testthat.R └── testthat │ ├── _snaps │ └── plots │ │ ├── basic-treemap.svg │ │ ├── chequer-pattern-fill.svg │ │ ├── colour-is-drawn-correctly-in-legend.svg │ │ ├── correct-colours-for-subgroup-text-differently.svg │ │ ├── correct-colours-for-subgroup-text.svg │ │ ├── fixed-layout.svg │ │ ├── lineargradient-fills.svg │ │ ├── scol-layout.svg │ │ ├── squarified-layout-starting-from-top-right.svg │ │ ├── srow-layout-starting-from-bottom-right-with-subgroups.svg │ │ ├── srow-layout.svg │ │ ├── understands-variants-of-centre-with-subgroups.svg │ │ └── understands-variants-of-centre.svg │ ├── test_G20.R │ ├── test_geoms.R │ ├── test_layout_functions.R │ ├── test_plots.R │ └── test_treemapify.R └── vignettes └── introduction-to-treemapify.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/a-rect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/R/a-rect.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/R/data.R -------------------------------------------------------------------------------- /R/expect_doppelganger.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/R/expect_doppelganger.R -------------------------------------------------------------------------------- /R/geom_treemap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/R/geom_treemap.R -------------------------------------------------------------------------------- /R/geom_treemap_subgroup_border.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/R/geom_treemap_subgroup_border.R -------------------------------------------------------------------------------- /R/geom_treemap_subgroup_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/R/geom_treemap_subgroup_text.R -------------------------------------------------------------------------------- /R/geom_treemap_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/R/geom_treemap_text.R -------------------------------------------------------------------------------- /R/ggplotify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/R/ggplotify.R -------------------------------------------------------------------------------- /R/treemap_fixed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/R/treemap_fixed.R -------------------------------------------------------------------------------- /R/treemap_squarified.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/R/treemap_squarified.R -------------------------------------------------------------------------------- /R/treemapify-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/R/treemapify-package.R -------------------------------------------------------------------------------- /R/treemapify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/R/treemapify.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/G20.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/data/G20.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/introduction-to-treemapify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/articles/introduction-to-treemapify.html -------------------------------------------------------------------------------- /docs/articles/introduction-to-treemapify_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/articles/introduction-to-treemapify_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/introduction-to-treemapify_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/articles/introduction-to-treemapify_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/introduction-to-treemapify_files/figure-html/basic_treemap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/articles/introduction-to-treemapify_files/figure-html/basic_treemap-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-treemapify_files/figure-html/geom_treemap_text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/articles/introduction-to-treemapify_files/figure-html/geom_treemap_text-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-treemapify_files/figure-html/many_subgroups-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/articles/introduction-to-treemapify_files/figure-html/many_subgroups-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-treemapify_files/figure-html/multiple_subgrouped_treemap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/articles/introduction-to-treemapify_files/figure-html/multiple_subgrouped_treemap-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-treemapify_files/figure-html/subgrouped_treemap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/articles/introduction-to-treemapify_files/figure-html/subgrouped_treemap-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-treemapify_files/header-attrs-2.5/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/articles/introduction-to-treemapify_files/header-attrs-2.5/header-attrs.js -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/G20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/G20.html -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/draw_key_rrect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/draw_key_rrect.html -------------------------------------------------------------------------------- /docs/reference/figures/README-basic_treemap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/figures/README-basic_treemap-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-complex_treemap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/figures/README-complex_treemap-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-geom_treemap_text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/figures/README-geom_treemap_text-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-multiple_subgrouped_treemap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/figures/README-multiple_subgrouped_treemap-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-subgrouped_treemap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/figures/README-subgrouped_treemap-1.png -------------------------------------------------------------------------------- /docs/reference/figures/animated_treemap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/figures/animated_treemap.gif -------------------------------------------------------------------------------- /docs/reference/geom_treemap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/geom_treemap-1.png -------------------------------------------------------------------------------- /docs/reference/geom_treemap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/geom_treemap.html -------------------------------------------------------------------------------- /docs/reference/geom_treemap_subgroup_border-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/geom_treemap_subgroup_border-1.png -------------------------------------------------------------------------------- /docs/reference/geom_treemap_subgroup_border.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/geom_treemap_subgroup_border.html -------------------------------------------------------------------------------- /docs/reference/geom_treemap_subgroup_text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/geom_treemap_subgroup_text-1.png -------------------------------------------------------------------------------- /docs/reference/geom_treemap_subgroup_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/geom_treemap_subgroup_text.html -------------------------------------------------------------------------------- /docs/reference/geom_treemap_text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/geom_treemap_text-1.png -------------------------------------------------------------------------------- /docs/reference/geom_treemap_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/geom_treemap_text.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/treemapify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/docs/reference/treemapify.html -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/G20.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/G20.Rd -------------------------------------------------------------------------------- /man/draw_key_rrect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/draw_key_rrect.Rd -------------------------------------------------------------------------------- /man/figures/README-basic_treemap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/figures/README-basic_treemap-1.png -------------------------------------------------------------------------------- /man/figures/README-complex_treemap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/figures/README-complex_treemap-1.png -------------------------------------------------------------------------------- /man/figures/README-geom_treemap_text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/figures/README-geom_treemap_text-1.png -------------------------------------------------------------------------------- /man/figures/README-multiple_subgrouped_treemap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/figures/README-multiple_subgrouped_treemap-1.png -------------------------------------------------------------------------------- /man/figures/README-subgrouped_treemap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/figures/README-subgrouped_treemap-1.png -------------------------------------------------------------------------------- /man/figures/animated_treemap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/figures/animated_treemap.gif -------------------------------------------------------------------------------- /man/geom_treemap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/geom_treemap.Rd -------------------------------------------------------------------------------- /man/geom_treemap_subgroup_border.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/geom_treemap_subgroup_border.Rd -------------------------------------------------------------------------------- /man/geom_treemap_subgroup_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/geom_treemap_subgroup_text.Rd -------------------------------------------------------------------------------- /man/geom_treemap_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/geom_treemap_text.Rd -------------------------------------------------------------------------------- /man/treemapify-ggproto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/treemapify-ggproto.Rd -------------------------------------------------------------------------------- /man/treemapify-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/treemapify-package.Rd -------------------------------------------------------------------------------- /man/treemapify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/man/treemapify.Rd -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/basic-treemap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/_snaps/plots/basic-treemap.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/chequer-pattern-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/_snaps/plots/chequer-pattern-fill.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/colour-is-drawn-correctly-in-legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/_snaps/plots/colour-is-drawn-correctly-in-legend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/correct-colours-for-subgroup-text-differently.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/_snaps/plots/correct-colours-for-subgroup-text-differently.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/correct-colours-for-subgroup-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/_snaps/plots/correct-colours-for-subgroup-text.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/fixed-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/_snaps/plots/fixed-layout.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/lineargradient-fills.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/_snaps/plots/lineargradient-fills.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/scol-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/_snaps/plots/scol-layout.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/squarified-layout-starting-from-top-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/_snaps/plots/squarified-layout-starting-from-top-right.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/srow-layout-starting-from-bottom-right-with-subgroups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/_snaps/plots/srow-layout-starting-from-bottom-right-with-subgroups.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/srow-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/_snaps/plots/srow-layout.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/understands-variants-of-centre-with-subgroups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/_snaps/plots/understands-variants-of-centre-with-subgroups.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/understands-variants-of-centre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/_snaps/plots/understands-variants-of-centre.svg -------------------------------------------------------------------------------- /tests/testthat/test_G20.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/test_G20.R -------------------------------------------------------------------------------- /tests/testthat/test_geoms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/test_geoms.R -------------------------------------------------------------------------------- /tests/testthat/test_layout_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/test_layout_functions.R -------------------------------------------------------------------------------- /tests/testthat/test_plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/test_plots.R -------------------------------------------------------------------------------- /tests/testthat/test_treemapify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/tests/testthat/test_treemapify.R -------------------------------------------------------------------------------- /vignettes/introduction-to-treemapify.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/treemapify/HEAD/vignettes/introduction-to-treemapify.Rmd --------------------------------------------------------------------------------