├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── rhub.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── data.R ├── geom_bar_text.R ├── geom_fit_text.R ├── ggfittext-package.R ├── polar.R └── utilities.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── data ├── altitudes.rda ├── animals.rda ├── animals_rich.rda ├── beverages.rda ├── beverages_rich.rda └── gold.rda ├── docs ├── 404.html ├── articles │ ├── index.html │ ├── introduction-to-ggfittext.html │ └── introduction-to-ggfittext_files │ │ ├── anchor-sections-1.0 │ │ ├── anchor-sections.css │ │ └── anchor-sections.js │ │ ├── figure-html │ │ ├── doesnt_fit-1.png │ │ ├── geom_fit_text_2-1.png │ │ ├── geom_fit_text_3-1.png │ │ ├── heatmap-1.png │ │ ├── reflow-1.png │ │ ├── reflow_and_grow-1.png │ │ ├── unnamed-chunk-1-1.png │ │ ├── unnamed-chunk-10-1.png │ │ ├── unnamed-chunk-11-1.png │ │ ├── unnamed-chunk-12-1.png │ │ ├── unnamed-chunk-13-1.png │ │ ├── unnamed-chunk-2-1.png │ │ ├── unnamed-chunk-3-1.png │ │ ├── unnamed-chunk-4-1.png │ │ ├── unnamed-chunk-5-1.png │ │ ├── unnamed-chunk-6-1.png │ │ ├── unnamed-chunk-7-1.png │ │ ├── unnamed-chunk-8-1.png │ │ └── unnamed-chunk-9-1.png │ │ ├── header-attrs-2.1 │ │ └── header-attrs.js │ │ └── 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 │ ├── Rplot001.png │ ├── altitudes.html │ ├── animals.html │ ├── animals_rich.html │ ├── beverages.html │ ├── beverages_rich.html │ ├── figures │ │ ├── README-doesnt_fit-1.png │ │ ├── README-geom_fit_text_2-1.png │ │ ├── README-geom_fit_text_3-1.png │ │ ├── README-heatmap-1.png │ │ ├── README-hero-1.pdf │ │ ├── README-hero-1.png │ │ ├── README-reflow-1.png │ │ ├── README-reflow_and_grow-1.png │ │ ├── README-unnamed-chunk-10-1.pdf │ │ ├── README-unnamed-chunk-10-1.png │ │ ├── README-unnamed-chunk-11-1.pdf │ │ ├── README-unnamed-chunk-11-1.png │ │ ├── README-unnamed-chunk-12-1.pdf │ │ ├── README-unnamed-chunk-12-1.png │ │ ├── README-unnamed-chunk-13-1.pdf │ │ ├── README-unnamed-chunk-13-1.png │ │ ├── README-unnamed-chunk-14-1.pdf │ │ ├── README-unnamed-chunk-14-1.png │ │ ├── README-unnamed-chunk-15-1.pdf │ │ ├── README-unnamed-chunk-15-1.png │ │ ├── README-unnamed-chunk-16-1.png │ │ ├── README-unnamed-chunk-17-1.png │ │ ├── README-unnamed-chunk-4-1.pdf │ │ ├── README-unnamed-chunk-4-1.png │ │ ├── README-unnamed-chunk-5-1.pdf │ │ ├── README-unnamed-chunk-5-1.png │ │ ├── README-unnamed-chunk-6-1.pdf │ │ ├── README-unnamed-chunk-6-1.png │ │ ├── README-unnamed-chunk-7-1.pdf │ │ ├── README-unnamed-chunk-7-1.png │ │ ├── README-unnamed-chunk-8-1.pdf │ │ ├── README-unnamed-chunk-8-1.png │ │ ├── README-unnamed-chunk-9-1.pdf │ │ └── README-unnamed-chunk-9-1.png │ ├── geom_fit_text-1.png │ ├── geom_fit_text.html │ ├── ggfittext.html │ ├── gold.html │ └── index.html └── sitemap.xml ├── inst └── WORDLIST ├── man ├── altitudes.Rd ├── animals.Rd ├── animals_rich.Rd ├── beverages.Rd ├── beverages_rich.Rd ├── figures │ ├── README-hero-1.pdf │ ├── README-hero-1.png │ ├── README-unnamed-chunk-10-1.pdf │ ├── README-unnamed-chunk-10-1.png │ ├── README-unnamed-chunk-11-1.pdf │ ├── README-unnamed-chunk-11-1.png │ ├── README-unnamed-chunk-12-1.pdf │ ├── README-unnamed-chunk-12-1.png │ ├── README-unnamed-chunk-13-1.pdf │ ├── README-unnamed-chunk-13-1.png │ ├── README-unnamed-chunk-14-1.pdf │ ├── README-unnamed-chunk-14-1.png │ ├── README-unnamed-chunk-15-1.pdf │ ├── README-unnamed-chunk-15-1.png │ ├── README-unnamed-chunk-16-1.png │ ├── README-unnamed-chunk-17-1.png │ ├── README-unnamed-chunk-4-1.pdf │ ├── README-unnamed-chunk-4-1.png │ ├── README-unnamed-chunk-5-1.pdf │ ├── README-unnamed-chunk-5-1.png │ ├── README-unnamed-chunk-6-1.pdf │ ├── README-unnamed-chunk-6-1.png │ ├── README-unnamed-chunk-7-1.pdf │ ├── README-unnamed-chunk-7-1.png │ ├── README-unnamed-chunk-8-1.pdf │ ├── README-unnamed-chunk-8-1.png │ ├── README-unnamed-chunk-9-1.pdf │ └── README-unnamed-chunk-9-1.png ├── geom_fit_text.Rd ├── ggfittext-package.Rd └── gold.Rd ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── email.yml ├── failures.md └── problems.md ├── tests ├── figs │ └── rich-text │ │ ├── simple-rich-text-plot-with-grow.svg │ │ └── simple-rich-text-plot.svg ├── spelling.R ├── testthat.R └── testthat │ ├── _snaps │ ├── geom_bar_text │ │ ├── bar-plot-with-coord-flip-and-place-middle.svg │ │ ├── bar-plot-with-dodged-labels-and-coord-flip.svg │ │ ├── bar-plot-with-implied-axis-flip-and-place-middle.svg │ │ ├── bar-plot-with-implied-axis-flip.svg │ │ ├── bar-plot-with-stacked-labels-and-coord-flip.svg │ │ ├── contrast-against-default-bar-colour.svg │ │ ├── contrasting-with-non-black-text.svg │ │ ├── dodged-labels-growing-and-reflowing.svg │ │ ├── geom-bar-text-with-faceting.svg │ │ ├── geom-bar-text-with-width-to-match-geom-col-width.svg │ │ ├── integer-y-shouldn-t-induce-an-implied-flip.svg │ │ ├── simple-geom-bar-text-plot.svg │ │ ├── stacked-bar-plot-with-0-values.svg │ │ ├── stacked-labels-growing-and-reflowing.svg │ │ └── stacked-labels.svg │ ├── geom_fit_text │ │ ├── angled-text.svg │ │ ├── blank-label.svg │ │ ├── box-defined-with-x-and-ymin-ymax.svg │ │ ├── box-defined-with-xmin-xmax-and-y.svg │ │ ├── box-defined-with-xmin-xmax-and-ymin-ymax.svg │ │ ├── complex-text-with-reflowing-and-growing.svg │ │ ├── complex-text-with-reflowing-only.svg │ │ ├── contrasting-text.svg │ │ ├── contrasting-with-non-black-text.svg │ │ ├── default-placement-middle.svg │ │ ├── growing-with-placement-at-the-bottom.svg │ │ ├── growing-with-reflowing.svg │ │ ├── growing-without-reflowing.svg │ │ ├── label-with-formatter-function.svg │ │ ├── numeric-width-and-height.svg │ │ ├── placing-at-the-bottom-right.svg │ │ ├── placing-at-the-top.svg │ │ ├── polar-geom-fit-text-plot.svg │ │ ├── polar-plot-with-flip-and-shifted-start.svg │ │ ├── polar-plot-with-flip-and-text-in-top-left.svg │ │ ├── polar-plot-with-flip.svg │ │ ├── polar-plot-with-growing-fullheight.svg │ │ ├── polar-plot-with-growing-non-fullheight.svg │ │ ├── polar-plot-with-height-of-20-mm.svg │ │ ├── polar-plot-with-height-of-5-mm.svg │ │ ├── polar-plot-with-text-placed-at-the-bottom.svg │ │ ├── polar-plot-with-text-placed-at-the-top.svg │ │ ├── polar-plot-with-width-of-100-mm.svg │ │ ├── polar-plot-with-width-of-40-mm.svg │ │ └── reflowing-without-growing.svg │ └── richtext │ │ ├── basic-bar-plot-with-rich-text.svg │ │ ├── basic-rich-text-with-grow-and-reflow.svg │ │ ├── basic-rich-text-with-grow.svg │ │ ├── basic-rich-text-with-reflow.svg │ │ ├── basic-rich-text.svg │ │ ├── complex-rich-text-with-grow-and-reflow.svg │ │ ├── complex-rich-text-with-reflow-only.svg │ │ ├── rich-bar-plot-with-grow-and-reflow.svg │ │ ├── rich-bar-plot-with-grow.svg │ │ └── rich-bar-plot-with-reflow.svg │ ├── test-geom_bar_text.R │ ├── test-geom_fit_text.R │ └── test-richtext.R └── vignettes └── introduction-to-ggfittext.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | inst/doc 3 | README.html 4 | coord_polar.R 5 | doc 6 | Meta 7 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/R/data.R -------------------------------------------------------------------------------- /R/geom_bar_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/R/geom_bar_text.R -------------------------------------------------------------------------------- /R/geom_fit_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/R/geom_fit_text.R -------------------------------------------------------------------------------- /R/ggfittext-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/R/ggfittext-package.R -------------------------------------------------------------------------------- /R/polar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/R/polar.R -------------------------------------------------------------------------------- /R/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/R/utilities.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/altitudes.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/data/altitudes.rda -------------------------------------------------------------------------------- /data/animals.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/data/animals.rda -------------------------------------------------------------------------------- /data/animals_rich.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/data/animals_rich.rda -------------------------------------------------------------------------------- /data/beverages.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/data/beverages.rda -------------------------------------------------------------------------------- /data/beverages_rich.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/data/beverages_rich.rda -------------------------------------------------------------------------------- /data/gold.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/data/gold.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext.html -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/doesnt_fit-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/doesnt_fit-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/geom_fit_text_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/geom_fit_text_2-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/geom_fit_text_3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/geom_fit_text_3-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/heatmap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/heatmap-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/reflow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/reflow-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/reflow_and_grow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/reflow_and_grow-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-1-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/figure-html/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/header-attrs-2.1/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/header-attrs-2.1/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/introduction-to-ggfittext_files/header-attrs-2.5/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/articles/introduction-to-ggfittext_files/header-attrs-2.5/header-attrs.js -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/altitudes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/altitudes.html -------------------------------------------------------------------------------- /docs/reference/animals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/animals.html -------------------------------------------------------------------------------- /docs/reference/animals_rich.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/animals_rich.html -------------------------------------------------------------------------------- /docs/reference/beverages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/beverages.html -------------------------------------------------------------------------------- /docs/reference/beverages_rich.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/beverages_rich.html -------------------------------------------------------------------------------- /docs/reference/figures/README-doesnt_fit-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-doesnt_fit-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-geom_fit_text_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-geom_fit_text_2-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-geom_fit_text_3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-geom_fit_text_3-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-heatmap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-heatmap-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-hero-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-hero-1.pdf -------------------------------------------------------------------------------- /docs/reference/figures/README-hero-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-hero-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-reflow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-reflow-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-reflow_and_grow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-reflow_and_grow-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-10-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-10-1.pdf -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-11-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-11-1.pdf -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-12-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-12-1.pdf -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-13-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-13-1.pdf -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-14-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-14-1.pdf -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-15-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-15-1.pdf -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-4-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-4-1.pdf -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-5-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-5-1.pdf -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-6-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-6-1.pdf -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-7-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-7-1.pdf -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-8-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-8-1.pdf -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-9-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-9-1.pdf -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/figures/README-unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/reference/geom_fit_text-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/geom_fit_text-1.png -------------------------------------------------------------------------------- /docs/reference/geom_fit_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/geom_fit_text.html -------------------------------------------------------------------------------- /docs/reference/ggfittext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/ggfittext.html -------------------------------------------------------------------------------- /docs/reference/gold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/gold.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/altitudes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/altitudes.Rd -------------------------------------------------------------------------------- /man/animals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/animals.Rd -------------------------------------------------------------------------------- /man/animals_rich.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/animals_rich.Rd -------------------------------------------------------------------------------- /man/beverages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/beverages.Rd -------------------------------------------------------------------------------- /man/beverages_rich.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/beverages_rich.Rd -------------------------------------------------------------------------------- /man/figures/README-hero-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-hero-1.pdf -------------------------------------------------------------------------------- /man/figures/README-hero-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-hero-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-10-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-10-1.pdf -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-11-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-11-1.pdf -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-12-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-12-1.pdf -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-13-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-13-1.pdf -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-14-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-14-1.pdf -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-15-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-15-1.pdf -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-4-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-4-1.pdf -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-5-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-5-1.pdf -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-6-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-6-1.pdf -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-7-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-7-1.pdf -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-8-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-8-1.pdf -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-9-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-9-1.pdf -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/figures/README-unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /man/geom_fit_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/geom_fit_text.Rd -------------------------------------------------------------------------------- /man/ggfittext-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/ggfittext-package.Rd -------------------------------------------------------------------------------- /man/gold.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/man/gold.Rd -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/email.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/revdep/email.yml -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /tests/figs/rich-text/simple-rich-text-plot-with-grow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/figs/rich-text/simple-rich-text-plot-with-grow.svg -------------------------------------------------------------------------------- /tests/figs/rich-text/simple-rich-text-plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/figs/rich-text/simple-rich-text-plot.svg -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/bar-plot-with-coord-flip-and-place-middle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/bar-plot-with-coord-flip-and-place-middle.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/bar-plot-with-dodged-labels-and-coord-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/bar-plot-with-dodged-labels-and-coord-flip.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/bar-plot-with-implied-axis-flip-and-place-middle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/bar-plot-with-implied-axis-flip-and-place-middle.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/bar-plot-with-implied-axis-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/bar-plot-with-implied-axis-flip.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/bar-plot-with-stacked-labels-and-coord-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/bar-plot-with-stacked-labels-and-coord-flip.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/contrast-against-default-bar-colour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/contrast-against-default-bar-colour.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/contrasting-with-non-black-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/contrasting-with-non-black-text.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/dodged-labels-growing-and-reflowing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/dodged-labels-growing-and-reflowing.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/geom-bar-text-with-faceting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/geom-bar-text-with-faceting.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/geom-bar-text-with-width-to-match-geom-col-width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/geom-bar-text-with-width-to-match-geom-col-width.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/integer-y-shouldn-t-induce-an-implied-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/integer-y-shouldn-t-induce-an-implied-flip.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/simple-geom-bar-text-plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/simple-geom-bar-text-plot.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/stacked-bar-plot-with-0-values.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/stacked-bar-plot-with-0-values.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/stacked-labels-growing-and-reflowing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/stacked-labels-growing-and-reflowing.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_bar_text/stacked-labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_bar_text/stacked-labels.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/angled-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/angled-text.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/blank-label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/blank-label.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/box-defined-with-x-and-ymin-ymax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/box-defined-with-x-and-ymin-ymax.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/box-defined-with-xmin-xmax-and-y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/box-defined-with-xmin-xmax-and-y.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/box-defined-with-xmin-xmax-and-ymin-ymax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/box-defined-with-xmin-xmax-and-ymin-ymax.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/complex-text-with-reflowing-and-growing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/complex-text-with-reflowing-and-growing.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/complex-text-with-reflowing-only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/complex-text-with-reflowing-only.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/contrasting-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/contrasting-text.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/contrasting-with-non-black-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/contrasting-with-non-black-text.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/default-placement-middle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/default-placement-middle.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/growing-with-placement-at-the-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/growing-with-placement-at-the-bottom.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/growing-with-reflowing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/growing-with-reflowing.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/growing-without-reflowing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/growing-without-reflowing.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/label-with-formatter-function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/label-with-formatter-function.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/numeric-width-and-height.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/numeric-width-and-height.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/placing-at-the-bottom-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/placing-at-the-bottom-right.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/placing-at-the-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/placing-at-the-top.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/polar-geom-fit-text-plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/polar-geom-fit-text-plot.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/polar-plot-with-flip-and-shifted-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/polar-plot-with-flip-and-shifted-start.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/polar-plot-with-flip-and-text-in-top-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/polar-plot-with-flip-and-text-in-top-left.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/polar-plot-with-flip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/polar-plot-with-flip.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/polar-plot-with-growing-fullheight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/polar-plot-with-growing-fullheight.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/polar-plot-with-growing-non-fullheight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/polar-plot-with-growing-non-fullheight.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/polar-plot-with-height-of-20-mm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/polar-plot-with-height-of-20-mm.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/polar-plot-with-height-of-5-mm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/polar-plot-with-height-of-5-mm.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/polar-plot-with-text-placed-at-the-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/polar-plot-with-text-placed-at-the-bottom.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/polar-plot-with-text-placed-at-the-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/polar-plot-with-text-placed-at-the-top.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/polar-plot-with-width-of-100-mm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/polar-plot-with-width-of-100-mm.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/polar-plot-with-width-of-40-mm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/polar-plot-with-width-of-40-mm.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_fit_text/reflowing-without-growing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/geom_fit_text/reflowing-without-growing.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/richtext/basic-bar-plot-with-rich-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/richtext/basic-bar-plot-with-rich-text.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/richtext/basic-rich-text-with-grow-and-reflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/richtext/basic-rich-text-with-grow-and-reflow.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/richtext/basic-rich-text-with-grow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/richtext/basic-rich-text-with-grow.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/richtext/basic-rich-text-with-reflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/richtext/basic-rich-text-with-reflow.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/richtext/basic-rich-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/richtext/basic-rich-text.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/richtext/complex-rich-text-with-grow-and-reflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/richtext/complex-rich-text-with-grow-and-reflow.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/richtext/complex-rich-text-with-reflow-only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/richtext/complex-rich-text-with-reflow-only.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/richtext/rich-bar-plot-with-grow-and-reflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/richtext/rich-bar-plot-with-grow-and-reflow.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/richtext/rich-bar-plot-with-grow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/richtext/rich-bar-plot-with-grow.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/richtext/rich-bar-plot-with-reflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/_snaps/richtext/rich-bar-plot-with-reflow.svg -------------------------------------------------------------------------------- /tests/testthat/test-geom_bar_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/test-geom_bar_text.R -------------------------------------------------------------------------------- /tests/testthat/test-geom_fit_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/test-geom_fit_text.R -------------------------------------------------------------------------------- /tests/testthat/test-richtext.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/tests/testthat/test-richtext.R -------------------------------------------------------------------------------- /vignettes/introduction-to-ggfittext.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wilkox/ggfittext/HEAD/vignettes/introduction-to-ggfittext.Rmd --------------------------------------------------------------------------------