├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── COMPLIANCE.yaml ├── CONTRIBUTING.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── boot_ci.R ├── copies.R ├── counts.R ├── data.R ├── describe.R ├── describe_ci.R ├── elucidate.R ├── globals.R ├── miscellaneous.R └── plot.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── data └── pdata.rda ├── elucidate.Rproj ├── inst └── CITATION ├── man ├── colour_options.Rd ├── consum.Rd ├── copies.Rd ├── counts.Rd ├── counts_all.Rd ├── counts_tb.Rd ├── counts_tb_all.Rd ├── describe.Rd ├── describe_all.Rd ├── describe_ci.Rd ├── describe_ci_all.Rd ├── describe_na.Rd ├── describe_na_all.Rd ├── dupes.Rd ├── elucidate.Rd ├── figures │ ├── README-plot-1.png │ ├── README-plot-10.png │ ├── README-plot-11.png │ ├── README-plot-2.png │ ├── README-plot-3.png │ ├── README-plot-4.png │ ├── README-plot-5.png │ ├── README-plot-6.png │ ├── README-plot-7.png │ ├── README-plot-8.png │ ├── README-plot-9.png │ ├── README-plot_var-1.png │ ├── README-plot_var_all-1.png │ └── hex-elucidate.png ├── grapes-ni-grapes.Rd ├── inv_quantile.Rd ├── kurtosis.Rd ├── mean_ci.Rd ├── median_ci.Rd ├── mode.Rd ├── pdata.Rd ├── plot_bar.Rd ├── plot_box.Rd ├── plot_c.Rd ├── plot_density.Rd ├── plot_histogram.Rd ├── plot_line.Rd ├── plot_na.Rd ├── plot_na_all.Rd ├── plot_pie.Rd ├── plot_raincloud.Rd ├── plot_scatter.Rd ├── plot_stat_error.Rd ├── plot_var.Rd ├── plot_var_all.Rd ├── plot_var_pairs.Rd ├── plot_violin.Rd ├── recode_errors.Rd ├── se.Rd ├── skewness.Rd ├── stat_ci.Rd ├── static_to_dynamic.Rd ├── translate.Rd └── wash_df.Rd ├── tests ├── testthat.R └── testthat │ ├── Rplots.pdf │ ├── test-copies.R │ ├── test-describe.R │ ├── test-describe_all.R │ ├── test-describe_ci.R │ ├── test-describe_ci_all.R │ ├── test-mean_ci.R │ ├── test-median_ci.R │ ├── test-misc.R │ ├── test-plot.R │ └── test-stat_ci.R └── vignettes ├── .gitignore └── elucidate.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COMPLIANCE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/COMPLIANCE.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/boot_ci.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/R/boot_ci.R -------------------------------------------------------------------------------- /R/copies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/R/copies.R -------------------------------------------------------------------------------- /R/counts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/R/counts.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/R/data.R -------------------------------------------------------------------------------- /R/describe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/R/describe.R -------------------------------------------------------------------------------- /R/describe_ci.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/R/describe_ci.R -------------------------------------------------------------------------------- /R/elucidate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/R/elucidate.R -------------------------------------------------------------------------------- /R/globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/R/globals.R -------------------------------------------------------------------------------- /R/miscellaneous.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/R/miscellaneous.R -------------------------------------------------------------------------------- /R/plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/R/plot.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /data/pdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/data/pdata.rda -------------------------------------------------------------------------------- /elucidate.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/elucidate.Rproj -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/colour_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/colour_options.Rd -------------------------------------------------------------------------------- /man/consum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/consum.Rd -------------------------------------------------------------------------------- /man/copies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/copies.Rd -------------------------------------------------------------------------------- /man/counts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/counts.Rd -------------------------------------------------------------------------------- /man/counts_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/counts_all.Rd -------------------------------------------------------------------------------- /man/counts_tb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/counts_tb.Rd -------------------------------------------------------------------------------- /man/counts_tb_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/counts_tb_all.Rd -------------------------------------------------------------------------------- /man/describe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/describe.Rd -------------------------------------------------------------------------------- /man/describe_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/describe_all.Rd -------------------------------------------------------------------------------- /man/describe_ci.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/describe_ci.Rd -------------------------------------------------------------------------------- /man/describe_ci_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/describe_ci_all.Rd -------------------------------------------------------------------------------- /man/describe_na.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/describe_na.Rd -------------------------------------------------------------------------------- /man/describe_na_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/describe_na_all.Rd -------------------------------------------------------------------------------- /man/dupes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/dupes.Rd -------------------------------------------------------------------------------- /man/elucidate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/elucidate.Rd -------------------------------------------------------------------------------- /man/figures/README-plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/README-plot-1.png -------------------------------------------------------------------------------- /man/figures/README-plot-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/README-plot-10.png -------------------------------------------------------------------------------- /man/figures/README-plot-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/README-plot-11.png -------------------------------------------------------------------------------- /man/figures/README-plot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/README-plot-2.png -------------------------------------------------------------------------------- /man/figures/README-plot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/README-plot-3.png -------------------------------------------------------------------------------- /man/figures/README-plot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/README-plot-4.png -------------------------------------------------------------------------------- /man/figures/README-plot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/README-plot-5.png -------------------------------------------------------------------------------- /man/figures/README-plot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/README-plot-6.png -------------------------------------------------------------------------------- /man/figures/README-plot-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/README-plot-7.png -------------------------------------------------------------------------------- /man/figures/README-plot-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/README-plot-8.png -------------------------------------------------------------------------------- /man/figures/README-plot-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/README-plot-9.png -------------------------------------------------------------------------------- /man/figures/README-plot_var-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/README-plot_var-1.png -------------------------------------------------------------------------------- /man/figures/README-plot_var_all-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/README-plot_var_all-1.png -------------------------------------------------------------------------------- /man/figures/hex-elucidate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/figures/hex-elucidate.png -------------------------------------------------------------------------------- /man/grapes-ni-grapes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/grapes-ni-grapes.Rd -------------------------------------------------------------------------------- /man/inv_quantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/inv_quantile.Rd -------------------------------------------------------------------------------- /man/kurtosis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/kurtosis.Rd -------------------------------------------------------------------------------- /man/mean_ci.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/mean_ci.Rd -------------------------------------------------------------------------------- /man/median_ci.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/median_ci.Rd -------------------------------------------------------------------------------- /man/mode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/mode.Rd -------------------------------------------------------------------------------- /man/pdata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/pdata.Rd -------------------------------------------------------------------------------- /man/plot_bar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_bar.Rd -------------------------------------------------------------------------------- /man/plot_box.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_box.Rd -------------------------------------------------------------------------------- /man/plot_c.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_c.Rd -------------------------------------------------------------------------------- /man/plot_density.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_density.Rd -------------------------------------------------------------------------------- /man/plot_histogram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_histogram.Rd -------------------------------------------------------------------------------- /man/plot_line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_line.Rd -------------------------------------------------------------------------------- /man/plot_na.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_na.Rd -------------------------------------------------------------------------------- /man/plot_na_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_na_all.Rd -------------------------------------------------------------------------------- /man/plot_pie.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_pie.Rd -------------------------------------------------------------------------------- /man/plot_raincloud.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_raincloud.Rd -------------------------------------------------------------------------------- /man/plot_scatter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_scatter.Rd -------------------------------------------------------------------------------- /man/plot_stat_error.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_stat_error.Rd -------------------------------------------------------------------------------- /man/plot_var.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_var.Rd -------------------------------------------------------------------------------- /man/plot_var_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_var_all.Rd -------------------------------------------------------------------------------- /man/plot_var_pairs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_var_pairs.Rd -------------------------------------------------------------------------------- /man/plot_violin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/plot_violin.Rd -------------------------------------------------------------------------------- /man/recode_errors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/recode_errors.Rd -------------------------------------------------------------------------------- /man/se.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/se.Rd -------------------------------------------------------------------------------- /man/skewness.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/skewness.Rd -------------------------------------------------------------------------------- /man/stat_ci.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/stat_ci.Rd -------------------------------------------------------------------------------- /man/static_to_dynamic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/static_to_dynamic.Rd -------------------------------------------------------------------------------- /man/translate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/translate.Rd -------------------------------------------------------------------------------- /man/wash_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/man/wash_df.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/Rplots.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/tests/testthat/Rplots.pdf -------------------------------------------------------------------------------- /tests/testthat/test-copies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/tests/testthat/test-copies.R -------------------------------------------------------------------------------- /tests/testthat/test-describe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/tests/testthat/test-describe.R -------------------------------------------------------------------------------- /tests/testthat/test-describe_all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/tests/testthat/test-describe_all.R -------------------------------------------------------------------------------- /tests/testthat/test-describe_ci.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/tests/testthat/test-describe_ci.R -------------------------------------------------------------------------------- /tests/testthat/test-describe_ci_all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/tests/testthat/test-describe_ci_all.R -------------------------------------------------------------------------------- /tests/testthat/test-mean_ci.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/tests/testthat/test-mean_ci.R -------------------------------------------------------------------------------- /tests/testthat/test-median_ci.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/tests/testthat/test-median_ci.R -------------------------------------------------------------------------------- /tests/testthat/test-misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/tests/testthat/test-misc.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/tests/testthat/test-plot.R -------------------------------------------------------------------------------- /tests/testthat/test-stat_ci.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/tests/testthat/test-stat_ci.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/elucidate.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/elucidate/HEAD/vignettes/elucidate.Rmd --------------------------------------------------------------------------------