├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── arial.R ├── boeCharts-package.R ├── breaks.R ├── calibri.R ├── captions.R ├── chart-utils.R ├── colours.R ├── combinations.R ├── data.R ├── exporting.R ├── fonts.R ├── geoms.R ├── ggproto-classes.R ├── label-currency.R ├── label-date.R ├── label-decimals.R ├── label-percent.R ├── limits.R ├── palette-utils.R ├── palettes.R ├── positions.R ├── scales-date.R ├── scales.R ├── themes-md.R ├── themes.R ├── utils.R └── zzz.R ├── README.Rmd ├── README.md ├── boeCharts.Rproj ├── data-raw └── data-import.R ├── data ├── FANG.rda ├── gold_holdings.rda └── sovereign_defaults.rda ├── inst └── extdata │ ├── CRAG-Database-Update-05-07-21.xlsx │ └── gold-data.XLSX ├── man ├── Arial.Rd ├── Calibri.Rd ├── FANG.Rd ├── add_hline0.Rd ├── annotate_boe_identity.Rd ├── as_md_theme.Rd ├── boeCharts-extensions.Rd ├── boeCharts-package.Rd ├── boe_breaks_date.Rd ├── boe_breaks_numeric.Rd ├── boe_export_chart.Rd ├── boe_limits_date.Rd ├── boe_limits_numeric.Rd ├── boe_pal.Rd ├── boepalettes.Rd ├── boetheme.Rd ├── caption_boe.Rd ├── caption_footnote.Rd ├── caption_source.Rd ├── colours_from_palette.Rd ├── diverging-palettes.Rd ├── figures │ ├── README-example-1.png │ ├── README-unnamed-chunk-4-1.png │ ├── README-unnamed-chunk-5-1.png │ ├── README-unnamed-chunk-6-1.png │ ├── README-unnamed-chunk-7-1.png │ ├── README-unnamed-chunk-8-1.png │ └── README-unnamed-chunk-9-1.png ├── format_pct.Rd ├── geom_text_boe_identity.Rd ├── ggplot2-scales-continuous.Rd ├── ggplot2-scales-discrete.Rd ├── gold_holdings.Rd ├── harmonious-palettes.Rd ├── import_arial.Rd ├── import_calibri.Rd ├── label_currency.Rd ├── label_date.Rd ├── label_decimal_places.Rd ├── left_align_titles.Rd ├── move_ylab.Rd ├── palette_names.Rd ├── palettes_2017.Rd ├── palettes_2018.Rd ├── palettes_identity.Rd ├── palettes_publication.Rd ├── palettes_shades.Rd ├── position_voronoi.Rd ├── print.palette.Rd ├── scale_date.Rd ├── show_colour_swatches.Rd ├── show_palette_cols.Rd ├── sovereign_defaults.Rd ├── theme_md.Rd ├── update_geom_font_defaults.Rd └── vibrant-palettes.Rd ├── tests ├── testthat.R └── testthat │ ├── test-breaks.R │ ├── test-fonts.R │ ├── test-formatting-caption.R │ ├── test-label-currency.R │ ├── test-label-date.R │ ├── test-palettes.R │ ├── test-scales.R │ └── test-themes.R └── vignettes ├── Bank-standard-colours-with-boeCharts.Rmd ├── last-mile-formatting.Rmd └── using-boeCharts.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/arial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/arial.R -------------------------------------------------------------------------------- /R/boeCharts-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/boeCharts-package.R -------------------------------------------------------------------------------- /R/breaks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/breaks.R -------------------------------------------------------------------------------- /R/calibri.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/calibri.R -------------------------------------------------------------------------------- /R/captions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/captions.R -------------------------------------------------------------------------------- /R/chart-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/chart-utils.R -------------------------------------------------------------------------------- /R/colours.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/colours.R -------------------------------------------------------------------------------- /R/combinations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/combinations.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/data.R -------------------------------------------------------------------------------- /R/exporting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/exporting.R -------------------------------------------------------------------------------- /R/fonts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/fonts.R -------------------------------------------------------------------------------- /R/geoms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/geoms.R -------------------------------------------------------------------------------- /R/ggproto-classes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/ggproto-classes.R -------------------------------------------------------------------------------- /R/label-currency.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/label-currency.R -------------------------------------------------------------------------------- /R/label-date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/label-date.R -------------------------------------------------------------------------------- /R/label-decimals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/label-decimals.R -------------------------------------------------------------------------------- /R/label-percent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/label-percent.R -------------------------------------------------------------------------------- /R/limits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/limits.R -------------------------------------------------------------------------------- /R/palette-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/palette-utils.R -------------------------------------------------------------------------------- /R/palettes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/palettes.R -------------------------------------------------------------------------------- /R/positions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/positions.R -------------------------------------------------------------------------------- /R/scales-date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/scales-date.R -------------------------------------------------------------------------------- /R/scales.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/scales.R -------------------------------------------------------------------------------- /R/themes-md.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/themes-md.R -------------------------------------------------------------------------------- /R/themes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/themes.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/README.md -------------------------------------------------------------------------------- /boeCharts.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/boeCharts.Rproj -------------------------------------------------------------------------------- /data-raw/data-import.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/data-raw/data-import.R -------------------------------------------------------------------------------- /data/FANG.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/data/FANG.rda -------------------------------------------------------------------------------- /data/gold_holdings.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/data/gold_holdings.rda -------------------------------------------------------------------------------- /data/sovereign_defaults.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/data/sovereign_defaults.rda -------------------------------------------------------------------------------- /inst/extdata/CRAG-Database-Update-05-07-21.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/inst/extdata/CRAG-Database-Update-05-07-21.xlsx -------------------------------------------------------------------------------- /inst/extdata/gold-data.XLSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/inst/extdata/gold-data.XLSX -------------------------------------------------------------------------------- /man/Arial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/Arial.Rd -------------------------------------------------------------------------------- /man/Calibri.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/Calibri.Rd -------------------------------------------------------------------------------- /man/FANG.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/FANG.Rd -------------------------------------------------------------------------------- /man/add_hline0.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/add_hline0.Rd -------------------------------------------------------------------------------- /man/annotate_boe_identity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/annotate_boe_identity.Rd -------------------------------------------------------------------------------- /man/as_md_theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/as_md_theme.Rd -------------------------------------------------------------------------------- /man/boeCharts-extensions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/boeCharts-extensions.Rd -------------------------------------------------------------------------------- /man/boeCharts-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/boeCharts-package.Rd -------------------------------------------------------------------------------- /man/boe_breaks_date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/boe_breaks_date.Rd -------------------------------------------------------------------------------- /man/boe_breaks_numeric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/boe_breaks_numeric.Rd -------------------------------------------------------------------------------- /man/boe_export_chart.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/boe_export_chart.Rd -------------------------------------------------------------------------------- /man/boe_limits_date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/boe_limits_date.Rd -------------------------------------------------------------------------------- /man/boe_limits_numeric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/boe_limits_numeric.Rd -------------------------------------------------------------------------------- /man/boe_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/boe_pal.Rd -------------------------------------------------------------------------------- /man/boepalettes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/boepalettes.Rd -------------------------------------------------------------------------------- /man/boetheme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/boetheme.Rd -------------------------------------------------------------------------------- /man/caption_boe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/caption_boe.Rd -------------------------------------------------------------------------------- /man/caption_footnote.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/caption_footnote.Rd -------------------------------------------------------------------------------- /man/caption_source.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/caption_source.Rd -------------------------------------------------------------------------------- /man/colours_from_palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/colours_from_palette.Rd -------------------------------------------------------------------------------- /man/diverging-palettes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/diverging-palettes.Rd -------------------------------------------------------------------------------- /man/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/figures/README-example-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/figures/README-unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/figures/README-unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/figures/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/figures/README-unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/figures/README-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/figures/README-unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /man/format_pct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/format_pct.Rd -------------------------------------------------------------------------------- /man/geom_text_boe_identity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/geom_text_boe_identity.Rd -------------------------------------------------------------------------------- /man/ggplot2-scales-continuous.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/ggplot2-scales-continuous.Rd -------------------------------------------------------------------------------- /man/ggplot2-scales-discrete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/ggplot2-scales-discrete.Rd -------------------------------------------------------------------------------- /man/gold_holdings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/gold_holdings.Rd -------------------------------------------------------------------------------- /man/harmonious-palettes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/harmonious-palettes.Rd -------------------------------------------------------------------------------- /man/import_arial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/import_arial.Rd -------------------------------------------------------------------------------- /man/import_calibri.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/import_calibri.Rd -------------------------------------------------------------------------------- /man/label_currency.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/label_currency.Rd -------------------------------------------------------------------------------- /man/label_date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/label_date.Rd -------------------------------------------------------------------------------- /man/label_decimal_places.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/label_decimal_places.Rd -------------------------------------------------------------------------------- /man/left_align_titles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/left_align_titles.Rd -------------------------------------------------------------------------------- /man/move_ylab.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/move_ylab.Rd -------------------------------------------------------------------------------- /man/palette_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/palette_names.Rd -------------------------------------------------------------------------------- /man/palettes_2017.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/palettes_2017.Rd -------------------------------------------------------------------------------- /man/palettes_2018.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/palettes_2018.Rd -------------------------------------------------------------------------------- /man/palettes_identity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/palettes_identity.Rd -------------------------------------------------------------------------------- /man/palettes_publication.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/palettes_publication.Rd -------------------------------------------------------------------------------- /man/palettes_shades.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/palettes_shades.Rd -------------------------------------------------------------------------------- /man/position_voronoi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/position_voronoi.Rd -------------------------------------------------------------------------------- /man/print.palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/print.palette.Rd -------------------------------------------------------------------------------- /man/scale_date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/scale_date.Rd -------------------------------------------------------------------------------- /man/show_colour_swatches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/show_colour_swatches.Rd -------------------------------------------------------------------------------- /man/show_palette_cols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/show_palette_cols.Rd -------------------------------------------------------------------------------- /man/sovereign_defaults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/sovereign_defaults.Rd -------------------------------------------------------------------------------- /man/theme_md.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/theme_md.Rd -------------------------------------------------------------------------------- /man/update_geom_font_defaults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/update_geom_font_defaults.Rd -------------------------------------------------------------------------------- /man/vibrant-palettes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/man/vibrant-palettes.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-breaks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/tests/testthat/test-breaks.R -------------------------------------------------------------------------------- /tests/testthat/test-fonts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/tests/testthat/test-fonts.R -------------------------------------------------------------------------------- /tests/testthat/test-formatting-caption.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/tests/testthat/test-formatting-caption.R -------------------------------------------------------------------------------- /tests/testthat/test-label-currency.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/tests/testthat/test-label-currency.R -------------------------------------------------------------------------------- /tests/testthat/test-label-date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/tests/testthat/test-label-date.R -------------------------------------------------------------------------------- /tests/testthat/test-palettes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/tests/testthat/test-palettes.R -------------------------------------------------------------------------------- /tests/testthat/test-scales.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/tests/testthat/test-scales.R -------------------------------------------------------------------------------- /tests/testthat/test-themes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/tests/testthat/test-themes.R -------------------------------------------------------------------------------- /vignettes/Bank-standard-colours-with-boeCharts.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/vignettes/Bank-standard-colours-with-boeCharts.Rmd -------------------------------------------------------------------------------- /vignettes/last-mile-formatting.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/vignettes/last-mile-formatting.Rmd -------------------------------------------------------------------------------- /vignettes/using-boeCharts.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bank-of-england/boeCharts/HEAD/vignettes/using-boeCharts.Rmd --------------------------------------------------------------------------------