├── .Rbuildignore ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── add_axis.R ├── colors.R ├── fontawesome_install.R ├── fontawesome_test.R ├── geoms.R ├── get_legend.R ├── lato_import.R ├── lato_install.R ├── lato_test.R ├── palette_urbn.R ├── remove_axis.R ├── remove_legend.R ├── remove_ticks.R ├── scales.R ├── scatter_grid.R ├── set_urbn_defaults.R ├── sysdata.rda ├── theme_urbn_map.R ├── theme_urbn_print.R ├── undo_urbn_defaults.R ├── urbn_geofacet.R ├── urbn_logo_text.R ├── urbn_note.R ├── urbn_plot.R ├── urbn_save.R ├── urbn_source.R ├── urbn_subtitle.R ├── urbn_title.R ├── urbn_y_title.R ├── view_palette.R └── zzz.R ├── README.Rmd ├── README.md ├── data-raw ├── generate_sysdata.R └── urbn_geofacet.R ├── data └── urbn_geofacet.rda ├── docs ├── 404.html ├── CODE_OF_CONDUCT.html ├── articles │ ├── images │ │ └── autocomplete.png │ ├── index.html │ ├── introducing-urbnthemes.html │ └── introducing-urbnthemes_files │ │ └── figure-html │ │ ├── example-1.png │ │ ├── example2-1.png │ │ ├── scatter-plot-1-1.png │ │ ├── scatter-plot-2-1.png │ │ └── theme-1.png ├── authors.html ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── add_axis.html │ ├── figures │ ├── README-area-plot-1.png │ ├── README-example-1.png │ ├── README-example2-1.png │ ├── README-line-plot-1.png │ ├── README-scatter-plot-1-1.png │ ├── README-scatter-plot-2-1.png │ ├── Rplot.png │ ├── hexsticker.png │ └── install-and-restart.png │ ├── fontawesome_install.html │ ├── fontawesome_test.html │ ├── geom_bar.html │ ├── geom_col.html │ ├── geom_jitter.html │ ├── geom_line.html │ ├── geom_path.html │ ├── geom_point.html │ ├── geom_step.html │ ├── geom_text.html │ ├── get_legend.html │ ├── index.html │ ├── lato_install.html │ ├── lato_test.html │ ├── palette_urbn.html │ ├── remove_axis.html │ ├── remove_legend.html │ ├── remove_ticks.html │ ├── scale_color_discrete.html │ ├── scale_color_gradientn.html │ ├── scale_colour_discrete.html │ ├── scale_colour_gradientn.html │ ├── scale_colour_ordinal.html │ ├── scale_fill_discrete.html │ ├── scale_fill_gradientn.html │ ├── scale_fill_ordinal.html │ ├── scatter_grid.html │ ├── set_urbn_defaults.html │ ├── theme_urbn_map.html │ ├── theme_urbn_print.html │ ├── undo_urbn_defaults.html │ ├── urbn_color_pal.html │ ├── urbn_geofacet.html │ ├── urbn_logo_text.html │ ├── urbn_note.html │ ├── urbn_palettes.html │ ├── urbn_plot.html │ ├── urbn_source.html │ ├── urbn_subtitle.html │ ├── urbn_title.html │ ├── urbn_y_title.html │ ├── view_palette-1.png │ ├── view_palette-2.png │ └── view_palette.html ├── hexsticker.R ├── man ├── add_axis.Rd ├── figures │ ├── README-area-plot-1.png │ ├── README-basic-example-1.png │ ├── README-branding-1.png │ ├── README-line-plot-1.png │ ├── README-notes-and-sources-1.png │ ├── README-scatter-plot-1-1.png │ ├── README-scatter-plot-2-1.png │ ├── hexsticker.png │ ├── install-and-restart.png │ ├── lifecycle-archived.svg │ ├── lifecycle-defunct.svg │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-maturing.svg │ ├── lifecycle-questioning.svg │ ├── lifecycle-stable.svg │ └── lifecycle-superseded.svg ├── fontawesome_install.Rd ├── fontawesome_test.Rd ├── geom_bar.Rd ├── geom_col.Rd ├── get_legend.Rd ├── lato_import.Rd ├── lato_install.Rd ├── lato_test.Rd ├── palette_urbn.Rd ├── remove_axis.Rd ├── remove_legend.Rd ├── remove_ticks.Rd ├── scale_color_discrete.Rd ├── scale_color_gradientn.Rd ├── scale_color_ordinal.Rd ├── scale_colour_discrete.Rd ├── scale_colour_gradientn.Rd ├── scale_colour_ordinal.Rd ├── scale_fill_discrete.Rd ├── scale_fill_gradientn.Rd ├── scale_fill_ordinal.Rd ├── scatter_grid.Rd ├── set_urbn_defaults.Rd ├── theme_urbn_map.Rd ├── theme_urbn_print.Rd ├── undo_urbn_defaults.Rd ├── urbn_color_pal.Rd ├── urbn_geofacet.Rd ├── urbn_logo_text.Rd ├── urbn_note.Rd ├── urbn_palettes.Rd ├── urbn_plot.Rd ├── urbn_save.Rd ├── urbn_source.Rd ├── urbn_subtitle.Rd ├── urbn_title.Rd ├── urbn_y_title.Rd └── view_palette.Rd ├── tests ├── testthat.R └── testthat │ ├── test-lato_import.R │ └── test-too_many_colors.R └── urbnthemes.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/add_axis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/add_axis.R -------------------------------------------------------------------------------- /R/colors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/colors.R -------------------------------------------------------------------------------- /R/fontawesome_install.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/fontawesome_install.R -------------------------------------------------------------------------------- /R/fontawesome_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/fontawesome_test.R -------------------------------------------------------------------------------- /R/geoms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/geoms.R -------------------------------------------------------------------------------- /R/get_legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/get_legend.R -------------------------------------------------------------------------------- /R/lato_import.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/lato_import.R -------------------------------------------------------------------------------- /R/lato_install.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/lato_install.R -------------------------------------------------------------------------------- /R/lato_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/lato_test.R -------------------------------------------------------------------------------- /R/palette_urbn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/palette_urbn.R -------------------------------------------------------------------------------- /R/remove_axis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/remove_axis.R -------------------------------------------------------------------------------- /R/remove_legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/remove_legend.R -------------------------------------------------------------------------------- /R/remove_ticks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/remove_ticks.R -------------------------------------------------------------------------------- /R/scales.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/scales.R -------------------------------------------------------------------------------- /R/scatter_grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/scatter_grid.R -------------------------------------------------------------------------------- /R/set_urbn_defaults.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/set_urbn_defaults.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/theme_urbn_map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/theme_urbn_map.R -------------------------------------------------------------------------------- /R/theme_urbn_print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/theme_urbn_print.R -------------------------------------------------------------------------------- /R/undo_urbn_defaults.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/undo_urbn_defaults.R -------------------------------------------------------------------------------- /R/urbn_geofacet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/urbn_geofacet.R -------------------------------------------------------------------------------- /R/urbn_logo_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/urbn_logo_text.R -------------------------------------------------------------------------------- /R/urbn_note.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/urbn_note.R -------------------------------------------------------------------------------- /R/urbn_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/urbn_plot.R -------------------------------------------------------------------------------- /R/urbn_save.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/urbn_save.R -------------------------------------------------------------------------------- /R/urbn_source.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/urbn_source.R -------------------------------------------------------------------------------- /R/urbn_subtitle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/urbn_subtitle.R -------------------------------------------------------------------------------- /R/urbn_title.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/urbn_title.R -------------------------------------------------------------------------------- /R/urbn_y_title.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/urbn_y_title.R -------------------------------------------------------------------------------- /R/view_palette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/view_palette.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/README.md -------------------------------------------------------------------------------- /data-raw/generate_sysdata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/data-raw/generate_sysdata.R -------------------------------------------------------------------------------- /data-raw/urbn_geofacet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/data-raw/urbn_geofacet.R -------------------------------------------------------------------------------- /data/urbn_geofacet.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/data/urbn_geofacet.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/CODE_OF_CONDUCT.html -------------------------------------------------------------------------------- /docs/articles/images/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/articles/images/autocomplete.png -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/introducing-urbnthemes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/articles/introducing-urbnthemes.html -------------------------------------------------------------------------------- /docs/articles/introducing-urbnthemes_files/figure-html/example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/articles/introducing-urbnthemes_files/figure-html/example-1.png -------------------------------------------------------------------------------- /docs/articles/introducing-urbnthemes_files/figure-html/example2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/articles/introducing-urbnthemes_files/figure-html/example2-1.png -------------------------------------------------------------------------------- /docs/articles/introducing-urbnthemes_files/figure-html/scatter-plot-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/articles/introducing-urbnthemes_files/figure-html/scatter-plot-1-1.png -------------------------------------------------------------------------------- /docs/articles/introducing-urbnthemes_files/figure-html/scatter-plot-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/articles/introducing-urbnthemes_files/figure-html/scatter-plot-2-1.png -------------------------------------------------------------------------------- /docs/articles/introducing-urbnthemes_files/figure-html/theme-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/articles/introducing-urbnthemes_files/figure-html/theme-1.png -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/add_axis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/add_axis.html -------------------------------------------------------------------------------- /docs/reference/figures/README-area-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/figures/README-area-plot-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/figures/README-example-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-example2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/figures/README-example2-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-line-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/figures/README-line-plot-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-scatter-plot-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/figures/README-scatter-plot-1-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-scatter-plot-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/figures/README-scatter-plot-2-1.png -------------------------------------------------------------------------------- /docs/reference/figures/Rplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/figures/Rplot.png -------------------------------------------------------------------------------- /docs/reference/figures/hexsticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/figures/hexsticker.png -------------------------------------------------------------------------------- /docs/reference/figures/install-and-restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/figures/install-and-restart.png -------------------------------------------------------------------------------- /docs/reference/fontawesome_install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/fontawesome_install.html -------------------------------------------------------------------------------- /docs/reference/fontawesome_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/fontawesome_test.html -------------------------------------------------------------------------------- /docs/reference/geom_bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/geom_bar.html -------------------------------------------------------------------------------- /docs/reference/geom_col.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/geom_col.html -------------------------------------------------------------------------------- /docs/reference/geom_jitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/geom_jitter.html -------------------------------------------------------------------------------- /docs/reference/geom_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/geom_line.html -------------------------------------------------------------------------------- /docs/reference/geom_path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/geom_path.html -------------------------------------------------------------------------------- /docs/reference/geom_point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/geom_point.html -------------------------------------------------------------------------------- /docs/reference/geom_step.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/geom_step.html -------------------------------------------------------------------------------- /docs/reference/geom_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/geom_text.html -------------------------------------------------------------------------------- /docs/reference/get_legend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/get_legend.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/lato_install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/lato_install.html -------------------------------------------------------------------------------- /docs/reference/lato_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/lato_test.html -------------------------------------------------------------------------------- /docs/reference/palette_urbn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/palette_urbn.html -------------------------------------------------------------------------------- /docs/reference/remove_axis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/remove_axis.html -------------------------------------------------------------------------------- /docs/reference/remove_legend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/remove_legend.html -------------------------------------------------------------------------------- /docs/reference/remove_ticks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/remove_ticks.html -------------------------------------------------------------------------------- /docs/reference/scale_color_discrete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/scale_color_discrete.html -------------------------------------------------------------------------------- /docs/reference/scale_color_gradientn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/scale_color_gradientn.html -------------------------------------------------------------------------------- /docs/reference/scale_colour_discrete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/scale_colour_discrete.html -------------------------------------------------------------------------------- /docs/reference/scale_colour_gradientn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/scale_colour_gradientn.html -------------------------------------------------------------------------------- /docs/reference/scale_colour_ordinal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/scale_colour_ordinal.html -------------------------------------------------------------------------------- /docs/reference/scale_fill_discrete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/scale_fill_discrete.html -------------------------------------------------------------------------------- /docs/reference/scale_fill_gradientn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/scale_fill_gradientn.html -------------------------------------------------------------------------------- /docs/reference/scale_fill_ordinal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/scale_fill_ordinal.html -------------------------------------------------------------------------------- /docs/reference/scatter_grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/scatter_grid.html -------------------------------------------------------------------------------- /docs/reference/set_urbn_defaults.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/set_urbn_defaults.html -------------------------------------------------------------------------------- /docs/reference/theme_urbn_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/theme_urbn_map.html -------------------------------------------------------------------------------- /docs/reference/theme_urbn_print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/theme_urbn_print.html -------------------------------------------------------------------------------- /docs/reference/undo_urbn_defaults.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/undo_urbn_defaults.html -------------------------------------------------------------------------------- /docs/reference/urbn_color_pal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/urbn_color_pal.html -------------------------------------------------------------------------------- /docs/reference/urbn_geofacet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/urbn_geofacet.html -------------------------------------------------------------------------------- /docs/reference/urbn_logo_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/urbn_logo_text.html -------------------------------------------------------------------------------- /docs/reference/urbn_note.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/urbn_note.html -------------------------------------------------------------------------------- /docs/reference/urbn_palettes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/urbn_palettes.html -------------------------------------------------------------------------------- /docs/reference/urbn_plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/urbn_plot.html -------------------------------------------------------------------------------- /docs/reference/urbn_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/urbn_source.html -------------------------------------------------------------------------------- /docs/reference/urbn_subtitle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/urbn_subtitle.html -------------------------------------------------------------------------------- /docs/reference/urbn_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/urbn_title.html -------------------------------------------------------------------------------- /docs/reference/urbn_y_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/urbn_y_title.html -------------------------------------------------------------------------------- /docs/reference/view_palette-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/view_palette-1.png -------------------------------------------------------------------------------- /docs/reference/view_palette-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/view_palette-2.png -------------------------------------------------------------------------------- /docs/reference/view_palette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/docs/reference/view_palette.html -------------------------------------------------------------------------------- /hexsticker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/hexsticker.R -------------------------------------------------------------------------------- /man/add_axis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/add_axis.Rd -------------------------------------------------------------------------------- /man/figures/README-area-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/README-area-plot-1.png -------------------------------------------------------------------------------- /man/figures/README-basic-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/README-basic-example-1.png -------------------------------------------------------------------------------- /man/figures/README-branding-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/README-branding-1.png -------------------------------------------------------------------------------- /man/figures/README-line-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/README-line-plot-1.png -------------------------------------------------------------------------------- /man/figures/README-notes-and-sources-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/README-notes-and-sources-1.png -------------------------------------------------------------------------------- /man/figures/README-scatter-plot-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/README-scatter-plot-1-1.png -------------------------------------------------------------------------------- /man/figures/README-scatter-plot-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/README-scatter-plot-2-1.png -------------------------------------------------------------------------------- /man/figures/hexsticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/hexsticker.png -------------------------------------------------------------------------------- /man/figures/install-and-restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/install-and-restart.png -------------------------------------------------------------------------------- /man/figures/lifecycle-archived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/lifecycle-archived.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-defunct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/lifecycle-defunct.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-maturing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/lifecycle-maturing.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-questioning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/lifecycle-questioning.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/fontawesome_install.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/fontawesome_install.Rd -------------------------------------------------------------------------------- /man/fontawesome_test.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/fontawesome_test.Rd -------------------------------------------------------------------------------- /man/geom_bar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/geom_bar.Rd -------------------------------------------------------------------------------- /man/geom_col.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/geom_col.Rd -------------------------------------------------------------------------------- /man/get_legend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/get_legend.Rd -------------------------------------------------------------------------------- /man/lato_import.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/lato_import.Rd -------------------------------------------------------------------------------- /man/lato_install.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/lato_install.Rd -------------------------------------------------------------------------------- /man/lato_test.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/lato_test.Rd -------------------------------------------------------------------------------- /man/palette_urbn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/palette_urbn.Rd -------------------------------------------------------------------------------- /man/remove_axis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/remove_axis.Rd -------------------------------------------------------------------------------- /man/remove_legend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/remove_legend.Rd -------------------------------------------------------------------------------- /man/remove_ticks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/remove_ticks.Rd -------------------------------------------------------------------------------- /man/scale_color_discrete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/scale_color_discrete.Rd -------------------------------------------------------------------------------- /man/scale_color_gradientn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/scale_color_gradientn.Rd -------------------------------------------------------------------------------- /man/scale_color_ordinal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/scale_color_ordinal.Rd -------------------------------------------------------------------------------- /man/scale_colour_discrete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/scale_colour_discrete.Rd -------------------------------------------------------------------------------- /man/scale_colour_gradientn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/scale_colour_gradientn.Rd -------------------------------------------------------------------------------- /man/scale_colour_ordinal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/scale_colour_ordinal.Rd -------------------------------------------------------------------------------- /man/scale_fill_discrete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/scale_fill_discrete.Rd -------------------------------------------------------------------------------- /man/scale_fill_gradientn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/scale_fill_gradientn.Rd -------------------------------------------------------------------------------- /man/scale_fill_ordinal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/scale_fill_ordinal.Rd -------------------------------------------------------------------------------- /man/scatter_grid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/scatter_grid.Rd -------------------------------------------------------------------------------- /man/set_urbn_defaults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/set_urbn_defaults.Rd -------------------------------------------------------------------------------- /man/theme_urbn_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/theme_urbn_map.Rd -------------------------------------------------------------------------------- /man/theme_urbn_print.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/theme_urbn_print.Rd -------------------------------------------------------------------------------- /man/undo_urbn_defaults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/undo_urbn_defaults.Rd -------------------------------------------------------------------------------- /man/urbn_color_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/urbn_color_pal.Rd -------------------------------------------------------------------------------- /man/urbn_geofacet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/urbn_geofacet.Rd -------------------------------------------------------------------------------- /man/urbn_logo_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/urbn_logo_text.Rd -------------------------------------------------------------------------------- /man/urbn_note.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/urbn_note.Rd -------------------------------------------------------------------------------- /man/urbn_palettes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/urbn_palettes.Rd -------------------------------------------------------------------------------- /man/urbn_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/urbn_plot.Rd -------------------------------------------------------------------------------- /man/urbn_save.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/urbn_save.Rd -------------------------------------------------------------------------------- /man/urbn_source.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/urbn_source.Rd -------------------------------------------------------------------------------- /man/urbn_subtitle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/urbn_subtitle.Rd -------------------------------------------------------------------------------- /man/urbn_title.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/urbn_title.Rd -------------------------------------------------------------------------------- /man/urbn_y_title.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/urbn_y_title.Rd -------------------------------------------------------------------------------- /man/view_palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/man/view_palette.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-lato_import.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/tests/testthat/test-lato_import.R -------------------------------------------------------------------------------- /tests/testthat/test-too_many_colors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/tests/testthat/test-too_many_colors.R -------------------------------------------------------------------------------- /urbnthemes.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnthemes/HEAD/urbnthemes.Rproj --------------------------------------------------------------------------------