├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── lint.yaml │ ├── pkgdown.yaml │ ├── recheck.yml │ └── test-coverage.yaml ├── .gitignore ├── .lintr ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── deprecated.R ├── geom_connector.R ├── geom_diverging.R ├── geom_stripped_rows.R ├── ggcascade.R ├── ggcoef_model.R ├── gglikert.R ├── ggstats-package.R ├── ggsurvey.R ├── hex_bw.R ├── label_number_abs.R ├── pal_extender.R ├── position_likert.R ├── round_any.R ├── scale_fill_likert.R ├── signif_stars.R ├── stat_cross.R ├── stat_prop.R ├── stat_weighted_mean.R ├── symmetric_limits.R ├── weighted_quantile.R └── weighted_sum.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── ggstats.Rproj ├── inst └── WORDLIST ├── man ├── augment_chisq_add_phi.Rd ├── figures │ ├── README-unnamed-chunk-10-1.png │ ├── README-unnamed-chunk-11-1.png │ ├── README-unnamed-chunk-12-1.png │ ├── README-unnamed-chunk-4-1.png │ ├── README-unnamed-chunk-4-2.png │ ├── README-unnamed-chunk-5-1.png │ ├── README-unnamed-chunk-6-1.png │ ├── README-unnamed-chunk-7-1.png │ ├── README-unnamed-chunk-8-1.png │ ├── README-unnamed-chunk-9-1.png │ ├── lifecycle-archived.svg │ ├── lifecycle-defunct.svg │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-maturing.svg │ ├── lifecycle-questioning.svg │ ├── lifecycle-stable.svg │ └── lifecycle-superseded.svg ├── geom_connector.Rd ├── geom_diverging.Rd ├── geom_prop_bar.Rd ├── geom_stripped_rows.Rd ├── ggcascade.Rd ├── ggcoef_model.Rd ├── ggcoef_multicomponents.Rd ├── gglikert.Rd ├── ggstats-package.Rd ├── ggsurvey.Rd ├── hex_bw.Rd ├── label_number_abs.Rd ├── pal_extender.Rd ├── position_likert.Rd ├── round_any.Rd ├── scale_fill_likert.Rd ├── signif_stars.Rd ├── stat_cross.Rd ├── stat_prop.Rd ├── stat_weighted_mean.Rd ├── symmetric_limits.Rd ├── weighted.median.Rd └── weighted.sum.Rd ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── email.yml ├── failures.md └── problems.md ├── tests ├── testthat.R └── testthat │ ├── Rplots.pdf │ ├── _snaps │ ├── geom_connector │ │ ├── geom-bar-connector-continuous-and-no-baseline.svg │ │ ├── geom-bar-connector-position-diverging.svg │ │ ├── geom-bar-connector-position-fill.svg │ │ ├── geom-bar-connector.svg │ │ ├── geom-connector-continuous.svg │ │ ├── geom-connector-infinite-width-and-continuous.svg │ │ ├── geom-connector-infinite-width.svg │ │ ├── geom-connector-zero-width.svg │ │ └── geom-connector.svg │ ├── geom_stripped │ │ └── stripped-rows-and-cols.svg │ ├── ggcascade │ │ ├── ggcascade-diamonds.svg │ │ ├── ggcascade-mpg-by-no-arrow-and-ncol.svg │ │ ├── ggcascade-mpg-py-pick-no-n-text-size.svg │ │ └── ggcascade-titanic-weights.svg │ ├── ggcoef_model │ │ ├── ggcoef-compare-dodged.svg │ │ ├── ggcoef-compare-faceted.svg │ │ ├── ggcoef-compare-table.svg │ │ ├── ggcoef-compare-titanic-dodged.svg │ │ ├── ggcoef-compare-titanic-faceted.svg │ │ ├── ggcoef-compare-titanic-table.svg │ │ ├── ggcoef-compare-with-include.svg │ │ ├── ggcoef-dodged-multinom.svg │ │ ├── ggcoef-dodged-zeroinfl.svg │ │ ├── ggcoef-faceted-multinom.svg │ │ ├── ggcoef-faceted-with-custom-group-labels.svg │ │ ├── ggcoef-faceted-zeroinfl-with-custom-group-labels.svg │ │ ├── ggcoef-faceted-zeroinfl.svg │ │ ├── ggcoef-model-different-types-of-contrasts.svg │ │ ├── ggcoef-model-logistic-regression-black-and-white.svg │ │ ├── ggcoef-model-logistic-regression-no-reference-row.svg │ │ ├── ggcoef-model-logistic-regression-no-significance.svg │ │ ├── ggcoef-model-logistic-regression-subset.svg │ │ ├── ggcoef-model-logistic-regression-with-intercept.svg │ │ ├── ggcoef-model-logistic-regression.svg │ │ ├── ggcoef-model-mod-labelled.svg │ │ ├── ggcoef-model-mod-simple-facet-labeller.svg │ │ ├── ggcoef-model-mod-simple-no-guide.svg │ │ ├── ggcoef-model-mod-simple-no-variable-facets.svg │ │ ├── ggcoef-model-mod-simple-with-variable-labels.svg │ │ ├── ggcoef-model-mod-simple.svg │ │ ├── ggcoef-model-multinom.svg │ │ ├── ggcoef-model-no-p-values.svg │ │ ├── ggcoef-model-polynomial-terms.svg │ │ ├── ggcoef-model-zeroinfl.svg │ │ ├── ggcoef-table-ci-pattern.svg │ │ ├── ggcoef-table-customized-statistics.svg │ │ ├── ggcoef-table-mod-simple.svg │ │ ├── ggcoef-table-multinom.svg │ │ ├── ggcoef-table-show-p-values-only.svg │ │ ├── ggcoef-table-show-p-values-signif-stars.svg │ │ ├── ggcoef-table-signif-stars-only.svg │ │ ├── ggcoef-table-stripped-rows.svg │ │ ├── ggcoef-table-table-header.svg │ │ ├── ggcoef-table-table-stat-label.svg │ │ ├── ggcoef-table-table-stat.svg │ │ ├── ggcoef-table-table-text-size.svg │ │ ├── ggcoef-table-table-widths.svg │ │ └── ggcoef-table-zeroinfl.svg │ ├── gglikert │ │ ├── gglikert-add-labels.svg │ │ ├── gglikert-add-totals.svg │ │ ├── gglikert-colors.svg │ │ ├── gglikert-customize-labels.svg │ │ ├── gglikert-customize-totals.svg │ │ ├── gglikert-cutoff-0.svg │ │ ├── gglikert-cutoff-1-5.svg │ │ ├── gglikert-cutoff-1-symmetric.svg │ │ ├── gglikert-cutoff-1.svg │ │ ├── gglikert-cutoff-5.svg │ │ ├── gglikert-exclude-fill-values.svg │ │ ├── gglikert-facet-cols.svg │ │ ├── gglikert-facet-rows-and-facet-cols.svg │ │ ├── gglikert-facet-rows-with-group-on-y.svg │ │ ├── gglikert-facet-rows.svg │ │ ├── gglikert-include-and-width.svg │ │ ├── gglikert-mod-simple.svg │ │ ├── gglikert-reverse.svg │ │ ├── gglikert-sort-mean-asc.svg │ │ ├── gglikert-sort-mean-desc.svg │ │ ├── gglikert-sort-median-asc.svg │ │ ├── gglikert-sort-median-desc.svg │ │ ├── gglikert-sort-prop-asc-include-center.svg │ │ ├── gglikert-sort-prop-asc.svg │ │ ├── gglikert-sort-prop-desc.svg │ │ ├── gglikert-sort-prop-lower-asc.svg │ │ ├── gglikert-sort-prop-lower-desc.svg │ │ ├── gglikert-stacked-add-median-line.svg │ │ ├── gglikert-stacked-labels-color-auto.svg │ │ ├── gglikert-stacked-labels-color-black.svg │ │ ├── gglikert-stacked-labels-color-red.svg │ │ ├── gglikert-stacked.svg │ │ ├── gglikert-variable-labels-and-y-label-wrap.svg │ │ ├── gglikert-variable-labels.svg │ │ └── gglikert-with-data-fun.svg │ ├── ggsurvey │ │ ├── ggsurvey-dstrat.svg │ │ └── ggsurvey-titanic.svg │ ├── position_likert │ │ ├── geom-diverging-and-geom-diverging-text.svg │ │ ├── geom-likert-and-geom-likert-text.svg │ │ ├── geom-pyramid-and-geom-pyramid-text.svg │ │ ├── position-diverging-base.svg │ │ ├── position-diverging-facet.svg │ │ ├── position-diverging-reverse.svg │ │ ├── position-likert-base.svg │ │ ├── position-likert-exclude-fill-values.svg │ │ ├── position-likert-facet.svg │ │ ├── position-likert-reverse.svg │ │ └── position-likert-vjust.svg │ ├── stat_cross │ │ ├── stat-cross-n-obs.svg │ │ ├── stat-cross-phi-coefficients.svg │ │ ├── stat-cross-residuals.svg │ │ ├── stat-cross-shape-22.svg │ │ └── stat-cross-table.svg │ ├── stat_prop │ │ ├── geom-prop-bar-geom-prop-text-geom-prop-connector.svg │ │ ├── stat-prop-by-character.svg │ │ ├── stat-prop-complete-color.svg │ │ ├── stat-prop-complete-colour.svg │ │ ├── stat-prop-complete-group.svg │ │ ├── stat-prop-default-by-fill.svg │ │ ├── stat-prop-default-by-none.svg │ │ ├── stat-prop-default-by-x-horizontal.svg │ │ ├── stat-prop-default-by-x.svg │ │ ├── stat-prop-direct-call.svg │ │ ├── stat-prop-titanic-dodge-not-specifying-by.svg │ │ ├── stat-prop-titanic-dodge.svg │ │ ├── stat-prop-titanic-facet.svg │ │ ├── stat-prop-titanic-stack.svg │ │ ├── stat-prop-titanic.svg │ │ └── stat-prop-y-aes.svg │ └── stat_weighted_mean │ │ ├── stat-weighted-mean-geom-bar-dodge-percent.svg │ │ ├── stat-weighted-mean-geom-bar-dodge.svg │ │ ├── stat-weighted-mean-geom-default.svg │ │ ├── stat-weighted-mean-geom-line-grouped.svg │ │ ├── stat-weighted-mean-geom-line.svg │ │ ├── stat-weighted-mean-point.svg │ │ └── stat-weighted-mean-titanic.svg │ ├── test-geom_connector.R │ ├── test-geom_stripped.R │ ├── test-ggcascade.R │ ├── test-ggcoef_model.R │ ├── test-gglikert.R │ ├── test-pal_extender.R │ ├── test-position_likert.R │ ├── test-stat_cross.R │ ├── test-stat_prop.R │ ├── test-stat_weighted_mean.R │ ├── test-utilities.R │ └── test_ggsurvey.R └── vignettes ├── .gitignore ├── geom_diverging.Rmd ├── ggcoef_model.Rmd ├── gglikert.Rmd ├── stat_cross.Rmd ├── stat_prop.Rmd └── stat_weighted_mean.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/recheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/.github/workflows/recheck.yml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/.lintr -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/deprecated.R -------------------------------------------------------------------------------- /R/geom_connector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/geom_connector.R -------------------------------------------------------------------------------- /R/geom_diverging.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/geom_diverging.R -------------------------------------------------------------------------------- /R/geom_stripped_rows.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/geom_stripped_rows.R -------------------------------------------------------------------------------- /R/ggcascade.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/ggcascade.R -------------------------------------------------------------------------------- /R/ggcoef_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/ggcoef_model.R -------------------------------------------------------------------------------- /R/gglikert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/gglikert.R -------------------------------------------------------------------------------- /R/ggstats-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/ggstats-package.R -------------------------------------------------------------------------------- /R/ggsurvey.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/ggsurvey.R -------------------------------------------------------------------------------- /R/hex_bw.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/hex_bw.R -------------------------------------------------------------------------------- /R/label_number_abs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/label_number_abs.R -------------------------------------------------------------------------------- /R/pal_extender.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/pal_extender.R -------------------------------------------------------------------------------- /R/position_likert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/position_likert.R -------------------------------------------------------------------------------- /R/round_any.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/round_any.R -------------------------------------------------------------------------------- /R/scale_fill_likert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/scale_fill_likert.R -------------------------------------------------------------------------------- /R/signif_stars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/signif_stars.R -------------------------------------------------------------------------------- /R/stat_cross.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/stat_cross.R -------------------------------------------------------------------------------- /R/stat_prop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/stat_prop.R -------------------------------------------------------------------------------- /R/stat_weighted_mean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/stat_weighted_mean.R -------------------------------------------------------------------------------- /R/symmetric_limits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/symmetric_limits.R -------------------------------------------------------------------------------- /R/weighted_quantile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/weighted_quantile.R -------------------------------------------------------------------------------- /R/weighted_sum.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/R/weighted_sum.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/cran-comments.md -------------------------------------------------------------------------------- /ggstats.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/ggstats.Rproj -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/augment_chisq_add_phi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/augment_chisq_add_phi.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/README-unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/README-unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/README-unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/README-unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/README-unnamed-chunk-4-2.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/README-unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/README-unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/README-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/README-unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /man/figures/lifecycle-archived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/lifecycle-archived.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-defunct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/lifecycle-defunct.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-maturing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/lifecycle-maturing.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-questioning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/lifecycle-questioning.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/geom_connector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/geom_connector.Rd -------------------------------------------------------------------------------- /man/geom_diverging.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/geom_diverging.Rd -------------------------------------------------------------------------------- /man/geom_prop_bar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/geom_prop_bar.Rd -------------------------------------------------------------------------------- /man/geom_stripped_rows.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/geom_stripped_rows.Rd -------------------------------------------------------------------------------- /man/ggcascade.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/ggcascade.Rd -------------------------------------------------------------------------------- /man/ggcoef_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/ggcoef_model.Rd -------------------------------------------------------------------------------- /man/ggcoef_multicomponents.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/ggcoef_multicomponents.Rd -------------------------------------------------------------------------------- /man/gglikert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/gglikert.Rd -------------------------------------------------------------------------------- /man/ggstats-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/ggstats-package.Rd -------------------------------------------------------------------------------- /man/ggsurvey.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/ggsurvey.Rd -------------------------------------------------------------------------------- /man/hex_bw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/hex_bw.Rd -------------------------------------------------------------------------------- /man/label_number_abs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/label_number_abs.Rd -------------------------------------------------------------------------------- /man/pal_extender.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/pal_extender.Rd -------------------------------------------------------------------------------- /man/position_likert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/position_likert.Rd -------------------------------------------------------------------------------- /man/round_any.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/round_any.Rd -------------------------------------------------------------------------------- /man/scale_fill_likert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/scale_fill_likert.Rd -------------------------------------------------------------------------------- /man/signif_stars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/signif_stars.Rd -------------------------------------------------------------------------------- /man/stat_cross.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/stat_cross.Rd -------------------------------------------------------------------------------- /man/stat_prop.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/stat_prop.Rd -------------------------------------------------------------------------------- /man/stat_weighted_mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/stat_weighted_mean.Rd -------------------------------------------------------------------------------- /man/symmetric_limits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/symmetric_limits.Rd -------------------------------------------------------------------------------- /man/weighted.median.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/weighted.median.Rd -------------------------------------------------------------------------------- /man/weighted.sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/man/weighted.sum.Rd -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/email.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/revdep/email.yml -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/revdep/failures.md -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/Rplots.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/Rplots.pdf -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_connector/geom-bar-connector-continuous-and-no-baseline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/geom_connector/geom-bar-connector-continuous-and-no-baseline.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_connector/geom-bar-connector-position-diverging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/geom_connector/geom-bar-connector-position-diverging.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_connector/geom-bar-connector-position-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/geom_connector/geom-bar-connector-position-fill.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_connector/geom-bar-connector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/geom_connector/geom-bar-connector.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_connector/geom-connector-continuous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/geom_connector/geom-connector-continuous.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_connector/geom-connector-infinite-width-and-continuous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/geom_connector/geom-connector-infinite-width-and-continuous.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_connector/geom-connector-infinite-width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/geom_connector/geom-connector-infinite-width.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_connector/geom-connector-zero-width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/geom_connector/geom-connector-zero-width.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_connector/geom-connector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/geom_connector/geom-connector.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_stripped/stripped-rows-and-cols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/geom_stripped/stripped-rows-and-cols.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcascade/ggcascade-diamonds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcascade/ggcascade-diamonds.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcascade/ggcascade-mpg-by-no-arrow-and-ncol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcascade/ggcascade-mpg-by-no-arrow-and-ncol.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcascade/ggcascade-mpg-py-pick-no-n-text-size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcascade/ggcascade-mpg-py-pick-no-n-text-size.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcascade/ggcascade-titanic-weights.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcascade/ggcascade-titanic-weights.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-compare-dodged.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-compare-dodged.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-compare-faceted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-compare-faceted.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-compare-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-compare-table.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-compare-titanic-dodged.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-compare-titanic-dodged.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-compare-titanic-faceted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-compare-titanic-faceted.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-compare-titanic-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-compare-titanic-table.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-compare-with-include.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-compare-with-include.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-dodged-multinom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-dodged-multinom.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-dodged-zeroinfl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-dodged-zeroinfl.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-faceted-multinom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-faceted-multinom.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-faceted-with-custom-group-labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-faceted-with-custom-group-labels.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-faceted-zeroinfl-with-custom-group-labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-faceted-zeroinfl-with-custom-group-labels.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-faceted-zeroinfl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-faceted-zeroinfl.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-different-types-of-contrasts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-different-types-of-contrasts.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-logistic-regression-black-and-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-logistic-regression-black-and-white.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-logistic-regression-no-reference-row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-logistic-regression-no-reference-row.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-logistic-regression-no-significance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-logistic-regression-no-significance.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-logistic-regression-subset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-logistic-regression-subset.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-logistic-regression-with-intercept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-logistic-regression-with-intercept.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-logistic-regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-logistic-regression.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-mod-labelled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-mod-labelled.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-mod-simple-facet-labeller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-mod-simple-facet-labeller.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-mod-simple-no-guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-mod-simple-no-guide.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-mod-simple-no-variable-facets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-mod-simple-no-variable-facets.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-mod-simple-with-variable-labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-mod-simple-with-variable-labels.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-mod-simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-mod-simple.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-multinom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-multinom.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-no-p-values.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-no-p-values.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-polynomial-terms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-polynomial-terms.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-model-zeroinfl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-model-zeroinfl.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-ci-pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-ci-pattern.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-customized-statistics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-customized-statistics.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-mod-simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-mod-simple.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-multinom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-multinom.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-show-p-values-only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-show-p-values-only.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-show-p-values-signif-stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-show-p-values-signif-stars.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-signif-stars-only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-signif-stars-only.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-stripped-rows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-stripped-rows.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-table-header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-table-header.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-table-stat-label.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-table-stat-label.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-table-stat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-table-stat.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-table-text-size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-table-text-size.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-table-widths.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-table-widths.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggcoef_model/ggcoef-table-zeroinfl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggcoef_model/ggcoef-table-zeroinfl.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-add-labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-add-labels.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-add-totals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-add-totals.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-colors.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-customize-labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-customize-labels.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-customize-totals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-customize-totals.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-cutoff-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-cutoff-0.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-cutoff-1-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-cutoff-1-5.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-cutoff-1-symmetric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-cutoff-1-symmetric.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-cutoff-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-cutoff-1.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-cutoff-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-cutoff-5.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-exclude-fill-values.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-exclude-fill-values.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-facet-cols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-facet-cols.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-facet-rows-and-facet-cols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-facet-rows-and-facet-cols.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-facet-rows-with-group-on-y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-facet-rows-with-group-on-y.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-facet-rows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-facet-rows.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-include-and-width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-include-and-width.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-mod-simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-mod-simple.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-reverse.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-sort-mean-asc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-sort-mean-asc.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-sort-mean-desc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-sort-mean-desc.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-sort-median-asc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-sort-median-asc.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-sort-median-desc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-sort-median-desc.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-sort-prop-asc-include-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-sort-prop-asc-include-center.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-sort-prop-asc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-sort-prop-asc.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-sort-prop-desc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-sort-prop-desc.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-sort-prop-lower-asc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-sort-prop-lower-asc.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-sort-prop-lower-desc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-sort-prop-lower-desc.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-stacked-add-median-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-stacked-add-median-line.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-stacked-labels-color-auto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-stacked-labels-color-auto.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-stacked-labels-color-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-stacked-labels-color-black.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-stacked-labels-color-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-stacked-labels-color-red.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-stacked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-stacked.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-variable-labels-and-y-label-wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-variable-labels-and-y-label-wrap.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-variable-labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-variable-labels.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/gglikert/gglikert-with-data-fun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/gglikert/gglikert-with-data-fun.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggsurvey/ggsurvey-dstrat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggsurvey/ggsurvey-dstrat.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/ggsurvey/ggsurvey-titanic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/ggsurvey/ggsurvey-titanic.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/position_likert/geom-diverging-and-geom-diverging-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/position_likert/geom-diverging-and-geom-diverging-text.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/position_likert/geom-likert-and-geom-likert-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/position_likert/geom-likert-and-geom-likert-text.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/position_likert/geom-pyramid-and-geom-pyramid-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/position_likert/geom-pyramid-and-geom-pyramid-text.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/position_likert/position-diverging-base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/position_likert/position-diverging-base.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/position_likert/position-diverging-facet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/position_likert/position-diverging-facet.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/position_likert/position-diverging-reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/position_likert/position-diverging-reverse.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/position_likert/position-likert-base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/position_likert/position-likert-base.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/position_likert/position-likert-exclude-fill-values.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/position_likert/position-likert-exclude-fill-values.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/position_likert/position-likert-facet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/position_likert/position-likert-facet.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/position_likert/position-likert-reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/position_likert/position-likert-reverse.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/position_likert/position-likert-vjust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/position_likert/position-likert-vjust.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_cross/stat-cross-n-obs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_cross/stat-cross-n-obs.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_cross/stat-cross-phi-coefficients.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_cross/stat-cross-phi-coefficients.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_cross/stat-cross-residuals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_cross/stat-cross-residuals.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_cross/stat-cross-shape-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_cross/stat-cross-shape-22.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_cross/stat-cross-table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_cross/stat-cross-table.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/geom-prop-bar-geom-prop-text-geom-prop-connector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/geom-prop-bar-geom-prop-text-geom-prop-connector.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-by-character.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-by-character.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-complete-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-complete-color.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-complete-colour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-complete-colour.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-complete-group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-complete-group.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-default-by-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-default-by-fill.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-default-by-none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-default-by-none.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-default-by-x-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-default-by-x-horizontal.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-default-by-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-default-by-x.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-direct-call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-direct-call.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-titanic-dodge-not-specifying-by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-titanic-dodge-not-specifying-by.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-titanic-dodge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-titanic-dodge.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-titanic-facet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-titanic-facet.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-titanic-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-titanic-stack.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-titanic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-titanic.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_prop/stat-prop-y-aes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_prop/stat-prop-y-aes.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-geom-bar-dodge-percent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-geom-bar-dodge-percent.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-geom-bar-dodge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-geom-bar-dodge.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-geom-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-geom-default.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-geom-line-grouped.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-geom-line-grouped.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-geom-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-geom-line.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-point.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-titanic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/_snaps/stat_weighted_mean/stat-weighted-mean-titanic.svg -------------------------------------------------------------------------------- /tests/testthat/test-geom_connector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/test-geom_connector.R -------------------------------------------------------------------------------- /tests/testthat/test-geom_stripped.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/test-geom_stripped.R -------------------------------------------------------------------------------- /tests/testthat/test-ggcascade.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/test-ggcascade.R -------------------------------------------------------------------------------- /tests/testthat/test-ggcoef_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/test-ggcoef_model.R -------------------------------------------------------------------------------- /tests/testthat/test-gglikert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/test-gglikert.R -------------------------------------------------------------------------------- /tests/testthat/test-pal_extender.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/test-pal_extender.R -------------------------------------------------------------------------------- /tests/testthat/test-position_likert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/test-position_likert.R -------------------------------------------------------------------------------- /tests/testthat/test-stat_cross.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/test-stat_cross.R -------------------------------------------------------------------------------- /tests/testthat/test-stat_prop.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/test-stat_prop.R -------------------------------------------------------------------------------- /tests/testthat/test-stat_weighted_mean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/test-stat_weighted_mean.R -------------------------------------------------------------------------------- /tests/testthat/test-utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/test-utilities.R -------------------------------------------------------------------------------- /tests/testthat/test_ggsurvey.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/tests/testthat/test_ggsurvey.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/geom_diverging.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/vignettes/geom_diverging.Rmd -------------------------------------------------------------------------------- /vignettes/ggcoef_model.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/vignettes/ggcoef_model.Rmd -------------------------------------------------------------------------------- /vignettes/gglikert.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/vignettes/gglikert.Rmd -------------------------------------------------------------------------------- /vignettes/stat_cross.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/vignettes/stat_cross.Rmd -------------------------------------------------------------------------------- /vignettes/stat_prop.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/vignettes/stat_prop.Rmd -------------------------------------------------------------------------------- /vignettes/stat_weighted_mean.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larmarange/ggstats/HEAD/vignettes/stat_weighted_mean.Rmd --------------------------------------------------------------------------------