├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── aaa.R ├── data.R ├── geom_posterior.R ├── ggdistribute-package.R ├── gghelpers.R ├── helpers.R ├── position_spread.R ├── stat_posterior_density.R ├── stats.R ├── theme.R └── zzz.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── data └── sre.rda ├── ggdistribute.Rproj ├── inst └── CITATION ├── man ├── GeomPosterior.Rd ├── annotate_corner.Rd ├── cmode.Rd ├── data_normal_sample.Rd ├── dmode.Rd ├── example_plot.Rd ├── figures │ ├── README-candy_wrappers-1.png │ ├── README-rainbow_hills-1.png │ ├── README-space_ships-1.png │ └── README-turtle_snails-1.png ├── ggdistribute-package.Rd ├── hdi.Rd ├── label_plot.Rd ├── mejr_geom_defaults.Rd ├── mejr_palette.Rd ├── position_spread.Rd ├── post_int.Rd ├── posterior_plot.Rd ├── scale_add.Rd ├── show_colors.Rd ├── sre.Rd ├── test_mejr_theme.Rd ├── theme_mejr.Rd └── trim_ends.Rd ├── tests ├── testthat.R └── testthat │ ├── test_geom_posterior.R │ ├── test_position_spread.R │ └── test_stat_density.R └── vignettes └── geom_posterior.Rmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aaa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/R/aaa.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/R/data.R -------------------------------------------------------------------------------- /R/geom_posterior.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/R/geom_posterior.R -------------------------------------------------------------------------------- /R/ggdistribute-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/R/ggdistribute-package.R -------------------------------------------------------------------------------- /R/gghelpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/R/gghelpers.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/position_spread.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/R/position_spread.R -------------------------------------------------------------------------------- /R/stat_posterior_density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/R/stat_posterior_density.R -------------------------------------------------------------------------------- /R/stats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/R/stats.R -------------------------------------------------------------------------------- /R/theme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/R/theme.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/sre.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/data/sre.rda -------------------------------------------------------------------------------- /ggdistribute.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/ggdistribute.Rproj -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/GeomPosterior.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/GeomPosterior.Rd -------------------------------------------------------------------------------- /man/annotate_corner.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/annotate_corner.Rd -------------------------------------------------------------------------------- /man/cmode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/cmode.Rd -------------------------------------------------------------------------------- /man/data_normal_sample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/data_normal_sample.Rd -------------------------------------------------------------------------------- /man/dmode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/dmode.Rd -------------------------------------------------------------------------------- /man/example_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/example_plot.Rd -------------------------------------------------------------------------------- /man/figures/README-candy_wrappers-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/figures/README-candy_wrappers-1.png -------------------------------------------------------------------------------- /man/figures/README-rainbow_hills-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/figures/README-rainbow_hills-1.png -------------------------------------------------------------------------------- /man/figures/README-space_ships-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/figures/README-space_ships-1.png -------------------------------------------------------------------------------- /man/figures/README-turtle_snails-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/figures/README-turtle_snails-1.png -------------------------------------------------------------------------------- /man/ggdistribute-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/ggdistribute-package.Rd -------------------------------------------------------------------------------- /man/hdi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/hdi.Rd -------------------------------------------------------------------------------- /man/label_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/label_plot.Rd -------------------------------------------------------------------------------- /man/mejr_geom_defaults.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/mejr_geom_defaults.Rd -------------------------------------------------------------------------------- /man/mejr_palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/mejr_palette.Rd -------------------------------------------------------------------------------- /man/position_spread.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/position_spread.Rd -------------------------------------------------------------------------------- /man/post_int.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/post_int.Rd -------------------------------------------------------------------------------- /man/posterior_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/posterior_plot.Rd -------------------------------------------------------------------------------- /man/scale_add.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/scale_add.Rd -------------------------------------------------------------------------------- /man/show_colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/show_colors.Rd -------------------------------------------------------------------------------- /man/sre.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/sre.Rd -------------------------------------------------------------------------------- /man/test_mejr_theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/test_mejr_theme.Rd -------------------------------------------------------------------------------- /man/theme_mejr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/theme_mejr.Rd -------------------------------------------------------------------------------- /man/trim_ends.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/man/trim_ends.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_geom_posterior.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/tests/testthat/test_geom_posterior.R -------------------------------------------------------------------------------- /tests/testthat/test_position_spread.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/tests/testthat/test_position_spread.R -------------------------------------------------------------------------------- /tests/testthat/test_stat_density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/tests/testthat/test_stat_density.R -------------------------------------------------------------------------------- /vignettes/geom_posterior.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamamutt/ggdistribute/HEAD/vignettes/geom_posterior.Rmd --------------------------------------------------------------------------------