├── .Rbuildignore ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── data.R ├── fortify_voronoi.R ├── geom_voronoi.R ├── stat_voronoi.R └── voronoi_polygon.R ├── README.md ├── california.jpeg ├── cran-comments.md ├── data ├── ncdc_locations.rda ├── oxford_bikes.rda └── oxford_map.rda ├── ggvoronoi.Rproj ├── man ├── fortify_voronoi.Rd ├── geom_voronoi.Rd ├── ggvoronoi-package.Rd ├── ncdc_locations.Rd ├── oxford_bikes.Rd ├── oxford_map.Rd ├── stat_voronoi.Rd └── voronoi_polygon.Rd ├── paper.bib ├── paper.md ├── tests ├── figs │ ├── border-with-blank-diagram.svg │ ├── border-with-continuous-fill.svg │ ├── border-with-discrete-fill.svg │ ├── deps.txt │ ├── heatmap-with-continuous-fill.svg │ └── heatmap-with-discrete-fill.svg ├── testthat.R └── testthat │ ├── test_aes_continuous.R │ ├── test_aes_discrete.R │ ├── test_outline.R │ └── test_polygons.R └── vignettes ├── ggvoronoi.Rmd └── ggvoronoi.html /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | inst/doc 5 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/R/data.R -------------------------------------------------------------------------------- /R/fortify_voronoi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/R/fortify_voronoi.R -------------------------------------------------------------------------------- /R/geom_voronoi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/R/geom_voronoi.R -------------------------------------------------------------------------------- /R/stat_voronoi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/R/stat_voronoi.R -------------------------------------------------------------------------------- /R/voronoi_polygon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/R/voronoi_polygon.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/README.md -------------------------------------------------------------------------------- /california.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/california.jpeg -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/ncdc_locations.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/data/ncdc_locations.rda -------------------------------------------------------------------------------- /data/oxford_bikes.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/data/oxford_bikes.rda -------------------------------------------------------------------------------- /data/oxford_map.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/data/oxford_map.rda -------------------------------------------------------------------------------- /ggvoronoi.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/ggvoronoi.Rproj -------------------------------------------------------------------------------- /man/fortify_voronoi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/man/fortify_voronoi.Rd -------------------------------------------------------------------------------- /man/geom_voronoi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/man/geom_voronoi.Rd -------------------------------------------------------------------------------- /man/ggvoronoi-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/man/ggvoronoi-package.Rd -------------------------------------------------------------------------------- /man/ncdc_locations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/man/ncdc_locations.Rd -------------------------------------------------------------------------------- /man/oxford_bikes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/man/oxford_bikes.Rd -------------------------------------------------------------------------------- /man/oxford_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/man/oxford_map.Rd -------------------------------------------------------------------------------- /man/stat_voronoi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/man/stat_voronoi.Rd -------------------------------------------------------------------------------- /man/voronoi_polygon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/man/voronoi_polygon.Rd -------------------------------------------------------------------------------- /paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/paper.bib -------------------------------------------------------------------------------- /paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/paper.md -------------------------------------------------------------------------------- /tests/figs/border-with-blank-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/tests/figs/border-with-blank-diagram.svg -------------------------------------------------------------------------------- /tests/figs/border-with-continuous-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/tests/figs/border-with-continuous-fill.svg -------------------------------------------------------------------------------- /tests/figs/border-with-discrete-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/tests/figs/border-with-discrete-fill.svg -------------------------------------------------------------------------------- /tests/figs/deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/tests/figs/deps.txt -------------------------------------------------------------------------------- /tests/figs/heatmap-with-continuous-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/tests/figs/heatmap-with-continuous-fill.svg -------------------------------------------------------------------------------- /tests/figs/heatmap-with-discrete-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/tests/figs/heatmap-with-discrete-fill.svg -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_aes_continuous.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/tests/testthat/test_aes_continuous.R -------------------------------------------------------------------------------- /tests/testthat/test_aes_discrete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/tests/testthat/test_aes_discrete.R -------------------------------------------------------------------------------- /tests/testthat/test_outline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/tests/testthat/test_outline.R -------------------------------------------------------------------------------- /tests/testthat/test_polygons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/tests/testthat/test_polygons.R -------------------------------------------------------------------------------- /vignettes/ggvoronoi.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/vignettes/ggvoronoi.Rmd -------------------------------------------------------------------------------- /vignettes/ggvoronoi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretrc/ggvoronoi/HEAD/vignettes/ggvoronoi.html --------------------------------------------------------------------------------