├── .Rbuildignore ├── .github ├── .gitignore ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md └── workflows │ ├── R-CMD-check-hard.yaml │ ├── R-CMD-check.yaml │ ├── lock.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── aaa.R ├── contrasts.R ├── data.R ├── dplyr-compat.R ├── misc.R ├── perf_mod.R ├── posterior_diff-compat.R ├── posteriors-compat.R ├── posteriors.R ├── reexports.R ├── tidyposterior-package.R ├── transformations.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── air.toml ├── codecov.yml ├── data ├── concrete_example.rda ├── ex_objects.RData ├── noisy_example.rda ├── precise_example.rda └── ts_example.rda ├── inst └── examples │ └── glm_v_nnet.RData ├── man ├── autoplot.posterior.Rd ├── autoplot.posterior_diff.Rd ├── contrast_models.Rd ├── figures │ ├── README-post-1.png │ ├── lifecycle-archived.svg │ ├── lifecycle-defunct.svg │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-maturing.svg │ ├── lifecycle-questioning.svg │ ├── lifecycle-soft-deprecated.svg │ ├── lifecycle-stable.svg │ ├── lifecycle-superseded.svg │ └── logo.png ├── perf_mod.Rd ├── precise_example.Rd ├── reexports.Rd ├── rmd │ ├── example-interfaces.Rmd │ └── example-interfaces.md ├── summary.posterior.Rd ├── summary.posterior_diff.Rd ├── tidy.perf_mod.Rd ├── tidyposterior-package.Rd ├── transformations.Rd ├── vctrs_methods_posterior.Rd └── vctrs_methods_posterior_diff.Rd ├── revdep ├── README.md ├── failures.md └── problems.md ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── contrast.md │ └── perf_mod.md │ ├── test_contrast.R │ ├── test_dplyr_new.R │ ├── test_perf_mod.R │ └── test_tidy.R ├── tidyposterior.Rproj └── vignettes ├── articles └── Getting_Started.Rmd └── tidyposterior.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check-hard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/.github/workflows/R-CMD-check-hard.yaml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/.github/workflows/lock.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: tidyposterior authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aaa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/R/aaa.R -------------------------------------------------------------------------------- /R/contrasts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/R/contrasts.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/R/data.R -------------------------------------------------------------------------------- /R/dplyr-compat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/R/dplyr-compat.R -------------------------------------------------------------------------------- /R/misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/R/misc.R -------------------------------------------------------------------------------- /R/perf_mod.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/R/perf_mod.R -------------------------------------------------------------------------------- /R/posterior_diff-compat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/R/posterior_diff-compat.R -------------------------------------------------------------------------------- /R/posteriors-compat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/R/posteriors-compat.R -------------------------------------------------------------------------------- /R/posteriors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/R/posteriors.R -------------------------------------------------------------------------------- /R/reexports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/R/reexports.R -------------------------------------------------------------------------------- /R/tidyposterior-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/R/tidyposterior-package.R -------------------------------------------------------------------------------- /R/transformations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/R/transformations.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/codecov.yml -------------------------------------------------------------------------------- /data/concrete_example.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/data/concrete_example.rda -------------------------------------------------------------------------------- /data/ex_objects.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/data/ex_objects.RData -------------------------------------------------------------------------------- /data/noisy_example.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/data/noisy_example.rda -------------------------------------------------------------------------------- /data/precise_example.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/data/precise_example.rda -------------------------------------------------------------------------------- /data/ts_example.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/data/ts_example.rda -------------------------------------------------------------------------------- /inst/examples/glm_v_nnet.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/inst/examples/glm_v_nnet.RData -------------------------------------------------------------------------------- /man/autoplot.posterior.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/autoplot.posterior.Rd -------------------------------------------------------------------------------- /man/autoplot.posterior_diff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/autoplot.posterior_diff.Rd -------------------------------------------------------------------------------- /man/contrast_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/contrast_models.Rd -------------------------------------------------------------------------------- /man/figures/README-post-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/figures/README-post-1.png -------------------------------------------------------------------------------- /man/figures/lifecycle-archived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/figures/lifecycle-archived.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-defunct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/figures/lifecycle-defunct.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-maturing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/figures/lifecycle-maturing.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-questioning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/figures/lifecycle-questioning.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-soft-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/figures/lifecycle-soft-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/perf_mod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/perf_mod.Rd -------------------------------------------------------------------------------- /man/precise_example.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/precise_example.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/rmd/example-interfaces.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/rmd/example-interfaces.Rmd -------------------------------------------------------------------------------- /man/rmd/example-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/rmd/example-interfaces.md -------------------------------------------------------------------------------- /man/summary.posterior.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/summary.posterior.Rd -------------------------------------------------------------------------------- /man/summary.posterior_diff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/summary.posterior_diff.Rd -------------------------------------------------------------------------------- /man/tidy.perf_mod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/tidy.perf_mod.Rd -------------------------------------------------------------------------------- /man/tidyposterior-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/tidyposterior-package.Rd -------------------------------------------------------------------------------- /man/transformations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/transformations.Rd -------------------------------------------------------------------------------- /man/vctrs_methods_posterior.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/vctrs_methods_posterior.Rd -------------------------------------------------------------------------------- /man/vctrs_methods_posterior_diff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/man/vctrs_methods_posterior_diff.Rd -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/contrast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/tests/testthat/_snaps/contrast.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/perf_mod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/tests/testthat/_snaps/perf_mod.md -------------------------------------------------------------------------------- /tests/testthat/test_contrast.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/tests/testthat/test_contrast.R -------------------------------------------------------------------------------- /tests/testthat/test_dplyr_new.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/tests/testthat/test_dplyr_new.R -------------------------------------------------------------------------------- /tests/testthat/test_perf_mod.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/tests/testthat/test_perf_mod.R -------------------------------------------------------------------------------- /tests/testthat/test_tidy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/tests/testthat/test_tidy.R -------------------------------------------------------------------------------- /tidyposterior.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/tidyposterior.Rproj -------------------------------------------------------------------------------- /vignettes/articles/Getting_Started.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/vignettes/articles/Getting_Started.Rmd -------------------------------------------------------------------------------- /vignettes/tidyposterior.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidymodels/tidyposterior/HEAD/vignettes/tidyposterior.Rmd --------------------------------------------------------------------------------