├── .Rbuildignore ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── barcharts.R ├── boxplots.R ├── hexplot.R ├── histograms.R └── importpackages.R ├── README.md ├── exampleplot.png ├── ggsurvey.Rproj ├── ggsurvey_0.1.0.pdf └── man ├── ggbarcrosstabs.Rd ├── ggbarcrosstabs3d.Rd ├── ggbarcrosstabs3d_svy.Rd ├── ggbarcrosstabs_svy.Rd ├── ggbarweight.Rd ├── ggbarweight_svy.Rd ├── ggboxweight.Rd ├── ggboxweight2d.Rd ├── ggboxweight2d_svy.Rd ├── ggboxweight3d.Rd ├── ggboxweight3d_svy.Rd ├── ggboxweight_svy.Rd ├── gghexweight.Rd ├── gghexweight2d.Rd ├── gghexweight2d_svy.Rd ├── gghexweight3d.Rd ├── gghexweight3d_svy.Rd ├── gghexweight_svy.Rd ├── gghistweight.Rd ├── gghistweight2d.Rd ├── gghistweight2d_svy.Rd ├── gghistweight3d.Rd ├── gghistweight3d_svy.Rd └── gghistweight_svy.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: Brittany Alexander 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/barcharts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/R/barcharts.R -------------------------------------------------------------------------------- /R/boxplots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/R/boxplots.R -------------------------------------------------------------------------------- /R/hexplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/R/hexplot.R -------------------------------------------------------------------------------- /R/histograms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/R/histograms.R -------------------------------------------------------------------------------- /R/importpackages.R: -------------------------------------------------------------------------------- 1 | #' @import ggplot2 survey hexbin dplyr Matrix 2 | NULL 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/README.md -------------------------------------------------------------------------------- /exampleplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/exampleplot.png -------------------------------------------------------------------------------- /ggsurvey.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/ggsurvey.Rproj -------------------------------------------------------------------------------- /ggsurvey_0.1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/ggsurvey_0.1.0.pdf -------------------------------------------------------------------------------- /man/ggbarcrosstabs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/ggbarcrosstabs.Rd -------------------------------------------------------------------------------- /man/ggbarcrosstabs3d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/ggbarcrosstabs3d.Rd -------------------------------------------------------------------------------- /man/ggbarcrosstabs3d_svy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/ggbarcrosstabs3d_svy.Rd -------------------------------------------------------------------------------- /man/ggbarcrosstabs_svy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/ggbarcrosstabs_svy.Rd -------------------------------------------------------------------------------- /man/ggbarweight.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/ggbarweight.Rd -------------------------------------------------------------------------------- /man/ggbarweight_svy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/ggbarweight_svy.Rd -------------------------------------------------------------------------------- /man/ggboxweight.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/ggboxweight.Rd -------------------------------------------------------------------------------- /man/ggboxweight2d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/ggboxweight2d.Rd -------------------------------------------------------------------------------- /man/ggboxweight2d_svy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/ggboxweight2d_svy.Rd -------------------------------------------------------------------------------- /man/ggboxweight3d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/ggboxweight3d.Rd -------------------------------------------------------------------------------- /man/ggboxweight3d_svy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/ggboxweight3d_svy.Rd -------------------------------------------------------------------------------- /man/ggboxweight_svy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/ggboxweight_svy.Rd -------------------------------------------------------------------------------- /man/gghexweight.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/gghexweight.Rd -------------------------------------------------------------------------------- /man/gghexweight2d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/gghexweight2d.Rd -------------------------------------------------------------------------------- /man/gghexweight2d_svy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/gghexweight2d_svy.Rd -------------------------------------------------------------------------------- /man/gghexweight3d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/gghexweight3d.Rd -------------------------------------------------------------------------------- /man/gghexweight3d_svy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/gghexweight3d_svy.Rd -------------------------------------------------------------------------------- /man/gghexweight_svy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/gghexweight_svy.Rd -------------------------------------------------------------------------------- /man/gghistweight.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/gghistweight.Rd -------------------------------------------------------------------------------- /man/gghistweight2d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/gghistweight2d.Rd -------------------------------------------------------------------------------- /man/gghistweight2d_svy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/gghistweight2d_svy.Rd -------------------------------------------------------------------------------- /man/gghistweight3d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/gghistweight3d.Rd -------------------------------------------------------------------------------- /man/gghistweight3d_svy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/gghistweight3d_svy.Rd -------------------------------------------------------------------------------- /man/gghistweight_svy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balexanderstats/ggsurvey/HEAD/man/gghistweight_svy.Rd --------------------------------------------------------------------------------