├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── ccdf_labels.R ├── counties.R ├── counties_labels.R ├── countydata.R ├── get_urbn_labels.R ├── get_urbn_map.R ├── statedata.R ├── states.R ├── states_labels.R ├── sysdata.rda ├── territories_counties.R └── territories_labels.R ├── README.Rmd ├── README.md ├── README_files ├── figure-gfm │ ├── blank-county-1.png │ ├── blank-state-1.png │ ├── county-1.png │ ├── get_urbn_labels-1.png │ ├── get_urbn_map-1.png │ ├── quick-labels-1.png │ ├── sf-county-1.png │ ├── sf-state-1.png │ ├── state-discrete-1.png │ ├── terr-1.png │ ├── theme-counties-1.png │ ├── theme-state-1.png │ └── us-choropleth-1.png ├── figure-markdown_github-ascii_identifiers │ ├── blank-state-1.png │ ├── unnamed-chunk-2-1.png │ ├── unnamed-chunk-3-1.png │ └── us-choropleth-1.png └── figure-markdown_github │ ├── blank-county-1.png │ ├── blank-state-1.png │ ├── county-1.png │ ├── get_urbn_labels-1.png │ ├── get_urbn_map-1.png │ ├── quick-labels-1.png │ ├── sf-county-1.png │ ├── sf-state-1.png │ ├── state-discrete-1.png │ ├── terr-1.png │ ├── theme-1.png │ ├── theme-counties-1.png │ ├── theme-state-1.png │ └── us-choropleth-1.png ├── data-raw ├── ccdf.R ├── ccdf_labels.R ├── counties.R ├── counties_labels.R ├── counties_sf.R ├── countydata.R ├── generate_sysdata.R ├── statedata.R ├── states.R ├── states_labels.R ├── states_sf.R ├── territories.R ├── territories_counties.R ├── territories_counties_sf.R ├── territories_labels.R ├── territories_sf.R └── utils.R ├── data ├── counties.rda ├── countydata.rda ├── statedata.rda └── states.rda ├── docs ├── CODE_OF_CONDUCT.html ├── articles │ ├── index.html │ ├── introducing-urbnmapr.html │ ├── introducing-urbnmapr_files │ │ └── figure-html │ │ │ ├── blank-ccdf-labels-1.png │ │ │ ├── blank-counties-1.png │ │ │ ├── blank-states-1.png │ │ │ ├── blank-states-labels-1.png │ │ │ ├── blank-territories-counties-1.png │ │ │ ├── county-1.png │ │ │ ├── theme-counties-1.png │ │ │ ├── theme-state-1.png │ │ │ └── us-choropleth-1.png │ ├── start-to-finish.html │ └── start-to-finish_files │ │ └── figure-html │ │ └── unnamed-chunk-1-1.png ├── authors.html ├── docsearch.css ├── docsearch.js ├── index.html ├── index_files │ └── figure-html │ │ ├── blank-county-1.png │ │ ├── blank-state-1.png │ │ ├── county-1.png │ │ ├── get_urbn_labels-1.png │ │ ├── get_urbn_map-1.png │ │ ├── quick-labels-1.png │ │ ├── sf-county-1.png │ │ ├── sf-state-1.png │ │ ├── state-discrete-1.png │ │ ├── terr-1.png │ │ ├── theme-counties-1.png │ │ ├── theme-state-1.png │ │ └── us-choropleth-1.png ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── ccdf_labels.html │ ├── counties.html │ ├── counties_labels.html │ ├── countydata.html │ ├── figures │ └── hexsticker.png │ ├── get_urbn_labels.html │ ├── get_urbn_map.html │ ├── index.html │ ├── statedata.html │ ├── states.html │ ├── states_labels.html │ ├── territories_counties.html │ └── territories_labels.html ├── hexsticker.R ├── man ├── ccdf_labels.Rd ├── counties.Rd ├── counties_labels.Rd ├── countydata.Rd ├── figures │ └── hexsticker.png ├── get_urbn_labels.Rd ├── get_urbn_map.Rd ├── statedata.Rd ├── states.Rd ├── states_labels.Rd ├── territories_counties.Rd └── territories_labels.Rd ├── urbnmapr.Rproj └── vignettes └── introducing-urbnmapr.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/ccdf_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/R/ccdf_labels.R -------------------------------------------------------------------------------- /R/counties.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/R/counties.R -------------------------------------------------------------------------------- /R/counties_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/R/counties_labels.R -------------------------------------------------------------------------------- /R/countydata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/R/countydata.R -------------------------------------------------------------------------------- /R/get_urbn_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/R/get_urbn_labels.R -------------------------------------------------------------------------------- /R/get_urbn_map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/R/get_urbn_map.R -------------------------------------------------------------------------------- /R/statedata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/R/statedata.R -------------------------------------------------------------------------------- /R/states.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/R/states.R -------------------------------------------------------------------------------- /R/states_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/R/states_labels.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/territories_counties.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/R/territories_counties.R -------------------------------------------------------------------------------- /R/territories_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/R/territories_labels.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README.md -------------------------------------------------------------------------------- /README_files/figure-gfm/blank-county-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-gfm/blank-county-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/blank-state-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-gfm/blank-state-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/county-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-gfm/county-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/get_urbn_labels-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-gfm/get_urbn_labels-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/get_urbn_map-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-gfm/get_urbn_map-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/quick-labels-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-gfm/quick-labels-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/sf-county-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-gfm/sf-county-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/sf-state-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-gfm/sf-state-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/state-discrete-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-gfm/state-discrete-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/terr-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-gfm/terr-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/theme-counties-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-gfm/theme-counties-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/theme-state-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-gfm/theme-state-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/us-choropleth-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-gfm/us-choropleth-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github-ascii_identifiers/blank-state-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github-ascii_identifiers/blank-state-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github-ascii_identifiers/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github-ascii_identifiers/us-choropleth-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github-ascii_identifiers/us-choropleth-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/blank-county-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/blank-county-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/blank-state-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/blank-state-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/county-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/county-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/get_urbn_labels-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/get_urbn_labels-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/get_urbn_map-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/get_urbn_map-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/quick-labels-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/quick-labels-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/sf-county-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/sf-county-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/sf-state-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/sf-state-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/state-discrete-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/state-discrete-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/terr-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/terr-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/theme-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/theme-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/theme-counties-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/theme-counties-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/theme-state-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/theme-state-1.png -------------------------------------------------------------------------------- /README_files/figure-markdown_github/us-choropleth-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/README_files/figure-markdown_github/us-choropleth-1.png -------------------------------------------------------------------------------- /data-raw/ccdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/ccdf.R -------------------------------------------------------------------------------- /data-raw/ccdf_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/ccdf_labels.R -------------------------------------------------------------------------------- /data-raw/counties.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/counties.R -------------------------------------------------------------------------------- /data-raw/counties_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/counties_labels.R -------------------------------------------------------------------------------- /data-raw/counties_sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/counties_sf.R -------------------------------------------------------------------------------- /data-raw/countydata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/countydata.R -------------------------------------------------------------------------------- /data-raw/generate_sysdata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/generate_sysdata.R -------------------------------------------------------------------------------- /data-raw/statedata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/statedata.R -------------------------------------------------------------------------------- /data-raw/states.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/states.R -------------------------------------------------------------------------------- /data-raw/states_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/states_labels.R -------------------------------------------------------------------------------- /data-raw/states_sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/states_sf.R -------------------------------------------------------------------------------- /data-raw/territories.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/territories.R -------------------------------------------------------------------------------- /data-raw/territories_counties.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/territories_counties.R -------------------------------------------------------------------------------- /data-raw/territories_counties_sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/territories_counties_sf.R -------------------------------------------------------------------------------- /data-raw/territories_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/territories_labels.R -------------------------------------------------------------------------------- /data-raw/territories_sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/territories_sf.R -------------------------------------------------------------------------------- /data-raw/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data-raw/utils.R -------------------------------------------------------------------------------- /data/counties.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data/counties.rda -------------------------------------------------------------------------------- /data/countydata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data/countydata.rda -------------------------------------------------------------------------------- /data/statedata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data/statedata.rda -------------------------------------------------------------------------------- /data/states.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/data/states.rda -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/CODE_OF_CONDUCT.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/introducing-urbnmapr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/articles/introducing-urbnmapr.html -------------------------------------------------------------------------------- /docs/articles/introducing-urbnmapr_files/figure-html/blank-ccdf-labels-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/articles/introducing-urbnmapr_files/figure-html/blank-ccdf-labels-1.png -------------------------------------------------------------------------------- /docs/articles/introducing-urbnmapr_files/figure-html/blank-counties-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/articles/introducing-urbnmapr_files/figure-html/blank-counties-1.png -------------------------------------------------------------------------------- /docs/articles/introducing-urbnmapr_files/figure-html/blank-states-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/articles/introducing-urbnmapr_files/figure-html/blank-states-1.png -------------------------------------------------------------------------------- /docs/articles/introducing-urbnmapr_files/figure-html/blank-states-labels-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/articles/introducing-urbnmapr_files/figure-html/blank-states-labels-1.png -------------------------------------------------------------------------------- /docs/articles/introducing-urbnmapr_files/figure-html/blank-territories-counties-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/articles/introducing-urbnmapr_files/figure-html/blank-territories-counties-1.png -------------------------------------------------------------------------------- /docs/articles/introducing-urbnmapr_files/figure-html/county-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/articles/introducing-urbnmapr_files/figure-html/county-1.png -------------------------------------------------------------------------------- /docs/articles/introducing-urbnmapr_files/figure-html/theme-counties-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/articles/introducing-urbnmapr_files/figure-html/theme-counties-1.png -------------------------------------------------------------------------------- /docs/articles/introducing-urbnmapr_files/figure-html/theme-state-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/articles/introducing-urbnmapr_files/figure-html/theme-state-1.png -------------------------------------------------------------------------------- /docs/articles/introducing-urbnmapr_files/figure-html/us-choropleth-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/articles/introducing-urbnmapr_files/figure-html/us-choropleth-1.png -------------------------------------------------------------------------------- /docs/articles/start-to-finish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/articles/start-to-finish.html -------------------------------------------------------------------------------- /docs/articles/start-to-finish_files/figure-html/unnamed-chunk-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/articles/start-to-finish_files/figure-html/unnamed-chunk-1-1.png -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index_files/figure-html/blank-county-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index_files/figure-html/blank-county-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/blank-state-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index_files/figure-html/blank-state-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/county-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index_files/figure-html/county-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/get_urbn_labels-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index_files/figure-html/get_urbn_labels-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/get_urbn_map-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index_files/figure-html/get_urbn_map-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/quick-labels-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index_files/figure-html/quick-labels-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/sf-county-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index_files/figure-html/sf-county-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/sf-state-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index_files/figure-html/sf-state-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/state-discrete-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index_files/figure-html/state-discrete-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/terr-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index_files/figure-html/terr-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/theme-counties-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index_files/figure-html/theme-counties-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/theme-state-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index_files/figure-html/theme-state-1.png -------------------------------------------------------------------------------- /docs/index_files/figure-html/us-choropleth-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/index_files/figure-html/us-choropleth-1.png -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/ccdf_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/reference/ccdf_labels.html -------------------------------------------------------------------------------- /docs/reference/counties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/reference/counties.html -------------------------------------------------------------------------------- /docs/reference/counties_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/reference/counties_labels.html -------------------------------------------------------------------------------- /docs/reference/countydata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/reference/countydata.html -------------------------------------------------------------------------------- /docs/reference/figures/hexsticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/reference/figures/hexsticker.png -------------------------------------------------------------------------------- /docs/reference/get_urbn_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/reference/get_urbn_labels.html -------------------------------------------------------------------------------- /docs/reference/get_urbn_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/reference/get_urbn_map.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/statedata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/reference/statedata.html -------------------------------------------------------------------------------- /docs/reference/states.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/reference/states.html -------------------------------------------------------------------------------- /docs/reference/states_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/reference/states_labels.html -------------------------------------------------------------------------------- /docs/reference/territories_counties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/reference/territories_counties.html -------------------------------------------------------------------------------- /docs/reference/territories_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/docs/reference/territories_labels.html -------------------------------------------------------------------------------- /hexsticker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/hexsticker.R -------------------------------------------------------------------------------- /man/ccdf_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/man/ccdf_labels.Rd -------------------------------------------------------------------------------- /man/counties.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/man/counties.Rd -------------------------------------------------------------------------------- /man/counties_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/man/counties_labels.Rd -------------------------------------------------------------------------------- /man/countydata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/man/countydata.Rd -------------------------------------------------------------------------------- /man/figures/hexsticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/man/figures/hexsticker.png -------------------------------------------------------------------------------- /man/get_urbn_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/man/get_urbn_labels.Rd -------------------------------------------------------------------------------- /man/get_urbn_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/man/get_urbn_map.Rd -------------------------------------------------------------------------------- /man/statedata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/man/statedata.Rd -------------------------------------------------------------------------------- /man/states.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/man/states.Rd -------------------------------------------------------------------------------- /man/states_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/man/states_labels.Rd -------------------------------------------------------------------------------- /man/territories_counties.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/man/territories_counties.Rd -------------------------------------------------------------------------------- /man/territories_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/man/territories_labels.Rd -------------------------------------------------------------------------------- /urbnmapr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/urbnmapr.Rproj -------------------------------------------------------------------------------- /vignettes/introducing-urbnmapr.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UrbanInstitute/urbnmapr/HEAD/vignettes/introducing-urbnmapr.Rmd --------------------------------------------------------------------------------