├── .Rbuildignore ├── .claude └── settings.local.json ├── .gitattributes ├── .github ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── SUPPORT.md ├── dependabot.yaml └── workflows │ ├── R-CMD-check-hard.yaml │ ├── R-CMD-check.yaml │ ├── check-all-examples.yaml │ ├── check-link-rot.yaml │ ├── check-random-test-order.yaml │ ├── check-readme.yaml │ ├── check-spelling.yaml │ ├── check-styling.yaml │ ├── check-test-warnings.yaml │ ├── check-vignette-warnings.yaml │ ├── html-5-check.yaml │ ├── lint-changed-files.yaml │ ├── lint.yaml │ ├── pkgdown-no-suggests.yaml │ ├── pkgdown.yaml │ ├── test-coverage-examples.yaml │ ├── test-coverage.yaml │ └── update-to-latest-easystats.yaml ├── .gitignore ├── .lintr ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── coord_radar.R ├── data_plot.R ├── geom_binomdensity.R ├── geom_from_list.R ├── geom_point2.R ├── geom_poolpoint.R ├── geom_violindot.R ├── geom_violinhalf.R ├── golden_ratio.R ├── plot.bayesfactor_models.R ├── plot.bayesfactor_parameters.R ├── plot.binned_residuals.R ├── plot.check_collinearity.R ├── plot.check_dag.R ├── plot.check_distribution.R ├── plot.check_heteroscedasticity.R ├── plot.check_homogeneity.R ├── plot.check_model.R ├── plot.check_normality.R ├── plot.check_outliers.R ├── plot.check_outliers.dots.R ├── plot.check_outliers.scree.R ├── plot.check_overdisp.R ├── plot.check_predictions.R ├── plot.compare_parameters.R ├── plot.compare_performance.R ├── plot.describe_distribution.R ├── plot.dw_data_tabulate.R ├── plot.effectsize_table.R ├── plot.equivalence_test.R ├── plot.estimate_contrasts.R ├── plot.estimate_density.R ├── plot.hdi.R ├── plot.n_factors.R ├── plot.p_direction.R ├── plot.p_function.R ├── plot.p_significance.R ├── plot.parameters_brms_meta.R ├── plot.parameters_model.R ├── plot.parameters_pca.R ├── plot.parameters_sem.R ├── plot.parameters_simulate.R ├── plot.performance_roc.R ├── plot.performance_simres.R ├── plot.point_estimates.R ├── plot.rope.R ├── plot.si.R ├── plot.visualisation_recipe.R ├── plots.R ├── print.check_model.R ├── print.data_plot.R ├── reshape_to_long.R ├── scale_color_bluebrown.R ├── scale_color_colorhex.R ├── scale_color_flat.R ├── scale_color_material.R ├── scale_color_metro.R ├── scale_color_okabeito.R ├── scale_color_pizza.R ├── scale_color_see.R ├── scale_color_social.R ├── see-package.R ├── theme_abyss.R ├── theme_azurelight.R ├── theme_blackboard.R ├── theme_lucid.R ├── theme_modern.R ├── theme_radar.R ├── utils.R └── utils_add_prior_layer.R ├── README.Rmd ├── README.md ├── WIP └── how_to_plot.R ├── air.toml ├── apa.csl ├── cran-comments.md ├── inst ├── CITATION └── WORDLIST ├── man ├── add_plot_attributes.Rd ├── bluebrown_colors.Rd ├── coord_radar.Rd ├── data_plot.Rd ├── figures │ ├── bayestestR-1.png │ ├── correlation-1.png │ ├── effectsize-1.png │ ├── logo.png │ ├── modelbased1-1.png │ ├── modelbased2-1.png │ ├── parameters1-1.png │ ├── parameters2-1.png │ ├── performance-1.png │ ├── unnamed-chunk-10-1.png │ ├── unnamed-chunk-11-1.png │ ├── unnamed-chunk-12-1.png │ ├── unnamed-chunk-13-1.png │ ├── unnamed-chunk-2-1.png │ ├── unnamed-chunk-4-1.png │ ├── unnamed-chunk-5-1.png │ ├── unnamed-chunk-6-1.png │ ├── unnamed-chunk-7-1.png │ └── unnamed-chunk-9-1.png ├── flat_colors.Rd ├── geom_binomdensity.Rd ├── geom_from_list.Rd ├── geom_point2.Rd ├── geom_poolpoint.Rd ├── geom_violindot.Rd ├── geom_violinhalf.Rd ├── ggplot2-ggproto.Rd ├── golden_ratio.Rd ├── material_colors.Rd ├── metro_colors.Rd ├── okabeito_colors.Rd ├── palette_bluebrown.Rd ├── palette_colorhex.Rd ├── palette_flat.Rd ├── palette_material.Rd ├── palette_metro.Rd ├── palette_okabeito.Rd ├── palette_pizza.Rd ├── palette_see.Rd ├── palette_social.Rd ├── pizza_colors.Rd ├── plot.datawizard_table.Rd ├── plot.see_bayesfactor_models.Rd ├── plot.see_bayesfactor_parameters.Rd ├── plot.see_check_collinearity.Rd ├── plot.see_check_dag.Rd ├── plot.see_check_distribution.Rd ├── plot.see_check_heteroscedasticity.Rd ├── plot.see_check_homogeneity.Rd ├── plot.see_check_model.Rd ├── plot.see_check_normality.Rd ├── plot.see_check_outliers.Rd ├── plot.see_compare_parameters.Rd ├── plot.see_compare_performance.Rd ├── plot.see_effectsize_table.Rd ├── plot.see_equivalence_test.Rd ├── plot.see_estimate_contrasts.Rd ├── plot.see_estimate_density.Rd ├── plot.see_hdi.Rd ├── plot.see_n_factors.Rd ├── plot.see_p_direction.Rd ├── plot.see_p_function.Rd ├── plot.see_p_significance.Rd ├── plot.see_parameters_brms_meta.Rd ├── plot.see_parameters_distribution.Rd ├── plot.see_parameters_model.Rd ├── plot.see_parameters_pca.Rd ├── plot.see_parameters_simulate.Rd ├── plot.see_performance_roc.Rd ├── plot.see_performance_simres.Rd ├── plot.see_point_estimate.Rd ├── plot.see_rope.Rd ├── plot.see_si.Rd ├── plots.Rd ├── print.see_performance_pp_check.Rd ├── scale_color_bluebrown.Rd ├── scale_color_colorhex.Rd ├── scale_color_flat.Rd ├── scale_color_material.Rd ├── scale_color_metro.Rd ├── scale_color_okabeito.Rd ├── scale_color_pizza.Rd ├── scale_color_see.Rd ├── scale_color_social.Rd ├── see-package.Rd ├── see_colors.Rd ├── social_colors.Rd ├── theme_abyss.Rd ├── theme_azurelight.Rd ├── theme_blackboard.Rd ├── theme_lucid.Rd ├── theme_modern.Rd └── theme_radar.Rd ├── paper ├── apa.csl ├── paper.Rmd ├── paper.bib ├── paper.log ├── paper.md ├── paper.pdf └── paper_files │ └── figure-latex │ ├── bayestestR-1.pdf │ ├── correlation-1.pdf │ ├── effectsize-1.pdf │ ├── modelbased1-1.pdf │ ├── modelbased2-1.pdf │ ├── parameters1-1.pdf │ ├── parameters2-1.pdf │ └── performance-1.pdf ├── pkgdown ├── _pkgdown.yml └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── revdep ├── README.md ├── check.R ├── cran.md ├── failures.md └── problems.md ├── see.Rproj ├── see.code-workspace ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── geom_binomdensity │ │ ├── geom-binomdensity-auto-scale-works.svg │ │ ├── geom-binomdensity-basic-works.svg │ │ ├── geom-binomdensity-custom-scale-works.svg │ │ ├── geom-binomdensity-density-scale-works.svg │ │ ├── geom-binomdensity-proportion-scale-works.svg │ │ └── geom-binomdensity-with-iris-data-works.svg │ ├── plot.check_collinearity │ │ └── plot-check-collinearity.svg │ ├── plot.check_dag │ │ ├── plot-check-dag-all-adjusted.svg │ │ ├── plot-check-dag-all.svg │ │ ├── plot-check-dag-current-adjusted.svg │ │ ├── plot-check-dag-current.svg │ │ ├── plot-check-dag-direct1.svg │ │ ├── plot-check-dag-direct2.svg │ │ ├── plot-check-dag-direct3.svg │ │ ├── plot-check-dag-direct4.svg │ │ ├── plot-check-dag-multiple-adjustments.svg │ │ ├── plot-check-dag-required-adjusted.svg │ │ ├── plot-check-dag-required.svg │ │ ├── plot-check-dag-total1.svg │ │ ├── plot-check-dag-total2.svg │ │ ├── plot-check-dag-total3.svg │ │ └── plot-check-dag-total4.svg │ ├── plot.check_normality │ │ ├── check-normality-works-fa-detrend.svg │ │ ├── check-normality-works-fa-nodetrend.svg │ │ ├── check-normality-works-fa-pp.svg │ │ ├── check-normality-works-lm-density.svg │ │ ├── check-normality-works-lm-pp.svg │ │ ├── check-normality-works-lm-qq.svg │ │ ├── check-normality-works-lmer-fixed.svg │ │ └── check-normality-works-lmer-random.svg │ ├── plot.compare_parameters │ │ └── plot-compare-parameters-works.svg │ ├── plot.effectsize_table │ │ └── aov-eta-squared-dot-plot.svg │ ├── plot.estimate_density │ │ └── plot-estimate-density-with-piors.svg │ ├── plot.n_factors │ │ ├── area-graph.svg │ │ ├── bar-graph.svg │ │ └── line-graph.svg │ ├── plot.p_direction │ │ ├── plot-p-dir-frequ1.svg │ │ ├── plot-p-dir-frequ2.svg │ │ └── plot-p-dir-glmmtmb.svg │ ├── plot.p_significance │ │ ├── plot-p-sig-frequ1.svg │ │ ├── plot-p-sig-frequ2.svg │ │ ├── plot-p-sig-frequ3.svg │ │ ├── plot-p-sig-glmmtmb.svg │ │ ├── plot-p-sig-simple-threshold.svg │ │ └── plot-p-sig-threshold-2.svg │ ├── plot.parameters_model │ │ ├── plot-model-parameters-1.svg │ │ ├── plot-model-parameters-doublerandom.svg │ │ ├── plot-model-parameters-gam.svg │ │ ├── plot-model-parameters-no-dir.svg │ │ ├── plot-model-parameters-random-0.svg │ │ ├── plot-model-parameters-random-1.svg │ │ ├── plot-model-parameters-random-2.svg │ │ ├── plot-model-parameters-random-3.svg │ │ ├── plot-model-parameters-random-4.svg │ │ ├── plot-model-parameters-random-5.svg │ │ └── plot-model-parameters-random-6.svg │ ├── plot.performance_pp_check │ │ ├── pp-check-glm-cbind-binomial-1.svg │ │ ├── pp-check-glm-cbind-binomial-2.svg │ │ ├── pp-check-glm-cbind-binomial-3.svg │ │ ├── pp-check-glm-cbind-binomial-4.svg │ │ └── pp-check-lm.svg │ ├── plot.performance_roc │ │ └── plot-see-performance-roc-works.svg │ ├── plots │ │ ├── plots-basic-combination-works.svg │ │ ├── plots-with-2x2-layout-works.svg │ │ ├── plots-with-custom-tags-and-title-works.svg │ │ ├── plots-with-tags-works.svg │ │ └── plots-with-three-plots-and-custom-layout-works.svg │ ├── scale_color_colorhex_c │ │ ├── scale-fill-colorhex-c-works.svg │ │ └── scale-fill-colorhex-d-works.svg │ ├── scale_color_okabeito │ │ ├── scale-color-okabeito-default-works.svg │ │ ├── scale-color-okabeito-full-original-palette-works.svg │ │ ├── scale-color-okabeito-reversed-works.svg │ │ ├── scale-fill-oi-alias-works.svg │ │ ├── scale-fill-okabeito-black-first-palette-works.svg │ │ ├── scale-fill-okabeito-custom-order-works.svg │ │ └── scale-fill-okabeito-default-works.svg │ ├── vdiffr_bayestestr_plots │ │ ├── plot-see-bayesfactor-models-works-1.svg │ │ └── plot-see-bayesfactor-models-works-2.svg │ ├── vdiffr_geoms_coords │ │ ├── coord-radar-works.svg │ │ ├── geom-point2-works.svg │ │ ├── geom-poolpoint-works-1.svg │ │ ├── geom-poolpoint-works-2.svg │ │ ├── geom-violindot-works.svg │ │ └── geom-violinhalf-works.svg │ ├── vdiffr_scale_color │ │ ├── scale-color-bluebrown-d-works.svg │ │ ├── scale-color-flat-c-works.svg │ │ ├── scale-color-pizza-c-works.svg │ │ ├── scale-color-pizza-d-works.svg │ │ ├── scale-color-social-default-gradient-works.svg │ │ ├── scale-color-social-works.svg │ │ ├── scale-fill-flat-d-works.svg │ │ ├── scale-fill-material-c-works.svg │ │ ├── scale-fill-material-d-works.svg │ │ ├── scale-fill-metro-c-works.svg │ │ ├── scale-fill-metro-d-works.svg │ │ ├── scale-fill-see-c-works.svg │ │ └── scale-fill-see-d-works.svg │ ├── vdiffr_themes │ │ ├── theme-abyss-works.svg │ │ ├── theme-azurelight-works.svg │ │ ├── theme-blackboard-works-with-base-size.svg │ │ ├── theme-blackboard-works.svg │ │ ├── theme-lucid-works-with-base-size.svg │ │ ├── theme-lucid-works.svg │ │ ├── theme-modern-with-ticks-works.svg │ │ ├── theme-modern-works-with-base-size.svg │ │ ├── theme-modern-works.svg │ │ └── theme-radar-works.svg │ └── windows │ │ └── plot.check_outliers │ │ ├── plot-see-check-outliers-multimethods.svg │ │ ├── plot-see-check-outliers-works-bars-method.svg │ │ ├── plot-see-check-outliers-works-bars-rescaled.svg │ │ ├── plot-see-check-outliers-works-count-method.svg │ │ ├── plot-see-check-outliers-works-default-method.svg │ │ ├── plot-see-check-outliers-works-scree-method-z-score.svg │ │ └── plot-see-check-outliers-works-scree-method.svg │ ├── helper.R │ ├── test-check_model.R │ ├── test-geom_binomdensity.R │ ├── test-golden_ratio.R │ ├── test-plot.check_collinearity.R │ ├── test-plot.check_dag.R │ ├── test-plot.check_distribution.R │ ├── test-plot.check_heteroscedasticity.R │ ├── test-plot.check_homogeneity.R │ ├── test-plot.check_normality.R │ ├── test-plot.check_outliers.R │ ├── test-plot.cluster_analysis.R │ ├── test-plot.compare_parameters.R │ ├── test-plot.compare_performance.R │ ├── test-plot.describe_distribution.R │ ├── test-plot.dw_data_tabulate.R │ ├── test-plot.easycormatrix.R │ ├── test-plot.effectsize_table.R │ ├── test-plot.equivalence_test.R │ ├── test-plot.estimate_contrasts.R │ ├── test-plot.estimate_density.R │ ├── test-plot.hdi.R │ ├── test-plot.n_factors.R │ ├── test-plot.p_direction.R │ ├── test-plot.p_significance.R │ ├── test-plot.parameters_model.R │ ├── test-plot.parameters_pca.R │ ├── test-plot.parameters_simulate.R │ ├── test-plot.performance_pp_check.R │ ├── test-plot.performance_roc.R │ ├── test-plot.point_estimates.R │ ├── test-plot.rope.R │ ├── test-plot.si.R │ ├── test-plot.simulate_parameters.R │ ├── test-plots.R │ ├── test-scale_color_colorhex_c.R │ ├── test-scale_color_okabeito.R │ ├── test-scale_color_values.R │ ├── test-vdiffr_bayestestr_plots.R │ ├── test-vdiffr_geoms_coords.R │ ├── test-vdiffr_scale_color.R │ └── test-vdiffr_themes.R └── vignettes ├── .gitignore ├── bayestestR.Rmd ├── correlation.Rmd ├── datawizard.Rmd ├── effectsize.Rmd ├── modelbased.Rmd ├── parameters.Rmd ├── performance.Rmd ├── seecolorscales.Rmd └── seecolorscales_dark.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: easystats 4 | -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check-hard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/R-CMD-check-hard.yaml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/check-all-examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/check-all-examples.yaml -------------------------------------------------------------------------------- /.github/workflows/check-link-rot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/check-link-rot.yaml -------------------------------------------------------------------------------- /.github/workflows/check-random-test-order.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/check-random-test-order.yaml -------------------------------------------------------------------------------- /.github/workflows/check-readme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/check-readme.yaml -------------------------------------------------------------------------------- /.github/workflows/check-spelling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/check-spelling.yaml -------------------------------------------------------------------------------- /.github/workflows/check-styling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/check-styling.yaml -------------------------------------------------------------------------------- /.github/workflows/check-test-warnings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/check-test-warnings.yaml -------------------------------------------------------------------------------- /.github/workflows/check-vignette-warnings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/check-vignette-warnings.yaml -------------------------------------------------------------------------------- /.github/workflows/html-5-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/html-5-check.yaml -------------------------------------------------------------------------------- /.github/workflows/lint-changed-files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/lint-changed-files.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown-no-suggests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/pkgdown-no-suggests.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage-examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/test-coverage-examples.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.github/workflows/update-to-latest-easystats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.github/workflows/update-to-latest-easystats.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/.lintr -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: see authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/coord_radar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/coord_radar.R -------------------------------------------------------------------------------- /R/data_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/data_plot.R -------------------------------------------------------------------------------- /R/geom_binomdensity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/geom_binomdensity.R -------------------------------------------------------------------------------- /R/geom_from_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/geom_from_list.R -------------------------------------------------------------------------------- /R/geom_point2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/geom_point2.R -------------------------------------------------------------------------------- /R/geom_poolpoint.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/geom_poolpoint.R -------------------------------------------------------------------------------- /R/geom_violindot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/geom_violindot.R -------------------------------------------------------------------------------- /R/geom_violinhalf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/geom_violinhalf.R -------------------------------------------------------------------------------- /R/golden_ratio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/golden_ratio.R -------------------------------------------------------------------------------- /R/plot.bayesfactor_models.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.bayesfactor_models.R -------------------------------------------------------------------------------- /R/plot.bayesfactor_parameters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.bayesfactor_parameters.R -------------------------------------------------------------------------------- /R/plot.binned_residuals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.binned_residuals.R -------------------------------------------------------------------------------- /R/plot.check_collinearity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.check_collinearity.R -------------------------------------------------------------------------------- /R/plot.check_dag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.check_dag.R -------------------------------------------------------------------------------- /R/plot.check_distribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.check_distribution.R -------------------------------------------------------------------------------- /R/plot.check_heteroscedasticity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.check_heteroscedasticity.R -------------------------------------------------------------------------------- /R/plot.check_homogeneity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.check_homogeneity.R -------------------------------------------------------------------------------- /R/plot.check_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.check_model.R -------------------------------------------------------------------------------- /R/plot.check_normality.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.check_normality.R -------------------------------------------------------------------------------- /R/plot.check_outliers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.check_outliers.R -------------------------------------------------------------------------------- /R/plot.check_outliers.dots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.check_outliers.dots.R -------------------------------------------------------------------------------- /R/plot.check_outliers.scree.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.check_outliers.scree.R -------------------------------------------------------------------------------- /R/plot.check_overdisp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.check_overdisp.R -------------------------------------------------------------------------------- /R/plot.check_predictions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.check_predictions.R -------------------------------------------------------------------------------- /R/plot.compare_parameters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.compare_parameters.R -------------------------------------------------------------------------------- /R/plot.compare_performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.compare_performance.R -------------------------------------------------------------------------------- /R/plot.describe_distribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.describe_distribution.R -------------------------------------------------------------------------------- /R/plot.dw_data_tabulate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.dw_data_tabulate.R -------------------------------------------------------------------------------- /R/plot.effectsize_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.effectsize_table.R -------------------------------------------------------------------------------- /R/plot.equivalence_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.equivalence_test.R -------------------------------------------------------------------------------- /R/plot.estimate_contrasts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.estimate_contrasts.R -------------------------------------------------------------------------------- /R/plot.estimate_density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.estimate_density.R -------------------------------------------------------------------------------- /R/plot.hdi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.hdi.R -------------------------------------------------------------------------------- /R/plot.n_factors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.n_factors.R -------------------------------------------------------------------------------- /R/plot.p_direction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.p_direction.R -------------------------------------------------------------------------------- /R/plot.p_function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.p_function.R -------------------------------------------------------------------------------- /R/plot.p_significance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.p_significance.R -------------------------------------------------------------------------------- /R/plot.parameters_brms_meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.parameters_brms_meta.R -------------------------------------------------------------------------------- /R/plot.parameters_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.parameters_model.R -------------------------------------------------------------------------------- /R/plot.parameters_pca.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.parameters_pca.R -------------------------------------------------------------------------------- /R/plot.parameters_sem.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.parameters_sem.R -------------------------------------------------------------------------------- /R/plot.parameters_simulate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.parameters_simulate.R -------------------------------------------------------------------------------- /R/plot.performance_roc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.performance_roc.R -------------------------------------------------------------------------------- /R/plot.performance_simres.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.performance_simres.R -------------------------------------------------------------------------------- /R/plot.point_estimates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.point_estimates.R -------------------------------------------------------------------------------- /R/plot.rope.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.rope.R -------------------------------------------------------------------------------- /R/plot.si.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.si.R -------------------------------------------------------------------------------- /R/plot.visualisation_recipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plot.visualisation_recipe.R -------------------------------------------------------------------------------- /R/plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/plots.R -------------------------------------------------------------------------------- /R/print.check_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/print.check_model.R -------------------------------------------------------------------------------- /R/print.data_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/print.data_plot.R -------------------------------------------------------------------------------- /R/reshape_to_long.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/reshape_to_long.R -------------------------------------------------------------------------------- /R/scale_color_bluebrown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/scale_color_bluebrown.R -------------------------------------------------------------------------------- /R/scale_color_colorhex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/scale_color_colorhex.R -------------------------------------------------------------------------------- /R/scale_color_flat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/scale_color_flat.R -------------------------------------------------------------------------------- /R/scale_color_material.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/scale_color_material.R -------------------------------------------------------------------------------- /R/scale_color_metro.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/scale_color_metro.R -------------------------------------------------------------------------------- /R/scale_color_okabeito.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/scale_color_okabeito.R -------------------------------------------------------------------------------- /R/scale_color_pizza.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/scale_color_pizza.R -------------------------------------------------------------------------------- /R/scale_color_see.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/scale_color_see.R -------------------------------------------------------------------------------- /R/scale_color_social.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/scale_color_social.R -------------------------------------------------------------------------------- /R/see-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/see-package.R -------------------------------------------------------------------------------- /R/theme_abyss.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/theme_abyss.R -------------------------------------------------------------------------------- /R/theme_azurelight.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/theme_azurelight.R -------------------------------------------------------------------------------- /R/theme_blackboard.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/theme_blackboard.R -------------------------------------------------------------------------------- /R/theme_lucid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/theme_lucid.R -------------------------------------------------------------------------------- /R/theme_modern.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/theme_modern.R -------------------------------------------------------------------------------- /R/theme_radar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/theme_radar.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/utils_add_prior_layer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/R/utils_add_prior_layer.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/README.md -------------------------------------------------------------------------------- /WIP/how_to_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/WIP/how_to_plot.R -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/air.toml -------------------------------------------------------------------------------- /apa.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/apa.csl -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/add_plot_attributes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/add_plot_attributes.Rd -------------------------------------------------------------------------------- /man/bluebrown_colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/bluebrown_colors.Rd -------------------------------------------------------------------------------- /man/coord_radar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/coord_radar.Rd -------------------------------------------------------------------------------- /man/data_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/data_plot.Rd -------------------------------------------------------------------------------- /man/figures/bayestestR-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/bayestestR-1.png -------------------------------------------------------------------------------- /man/figures/correlation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/correlation-1.png -------------------------------------------------------------------------------- /man/figures/effectsize-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/effectsize-1.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/modelbased1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/modelbased1-1.png -------------------------------------------------------------------------------- /man/figures/modelbased2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/modelbased2-1.png -------------------------------------------------------------------------------- /man/figures/parameters1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/parameters1-1.png -------------------------------------------------------------------------------- /man/figures/parameters2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/parameters2-1.png -------------------------------------------------------------------------------- /man/figures/performance-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/performance-1.png -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /man/figures/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/figures/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /man/flat_colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/flat_colors.Rd -------------------------------------------------------------------------------- /man/geom_binomdensity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/geom_binomdensity.Rd -------------------------------------------------------------------------------- /man/geom_from_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/geom_from_list.Rd -------------------------------------------------------------------------------- /man/geom_point2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/geom_point2.Rd -------------------------------------------------------------------------------- /man/geom_poolpoint.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/geom_poolpoint.Rd -------------------------------------------------------------------------------- /man/geom_violindot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/geom_violindot.Rd -------------------------------------------------------------------------------- /man/geom_violinhalf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/geom_violinhalf.Rd -------------------------------------------------------------------------------- /man/ggplot2-ggproto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/ggplot2-ggproto.Rd -------------------------------------------------------------------------------- /man/golden_ratio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/golden_ratio.Rd -------------------------------------------------------------------------------- /man/material_colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/material_colors.Rd -------------------------------------------------------------------------------- /man/metro_colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/metro_colors.Rd -------------------------------------------------------------------------------- /man/okabeito_colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/okabeito_colors.Rd -------------------------------------------------------------------------------- /man/palette_bluebrown.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/palette_bluebrown.Rd -------------------------------------------------------------------------------- /man/palette_colorhex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/palette_colorhex.Rd -------------------------------------------------------------------------------- /man/palette_flat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/palette_flat.Rd -------------------------------------------------------------------------------- /man/palette_material.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/palette_material.Rd -------------------------------------------------------------------------------- /man/palette_metro.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/palette_metro.Rd -------------------------------------------------------------------------------- /man/palette_okabeito.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/palette_okabeito.Rd -------------------------------------------------------------------------------- /man/palette_pizza.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/palette_pizza.Rd -------------------------------------------------------------------------------- /man/palette_see.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/palette_see.Rd -------------------------------------------------------------------------------- /man/palette_social.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/palette_social.Rd -------------------------------------------------------------------------------- /man/pizza_colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/pizza_colors.Rd -------------------------------------------------------------------------------- /man/plot.datawizard_table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.datawizard_table.Rd -------------------------------------------------------------------------------- /man/plot.see_bayesfactor_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_bayesfactor_models.Rd -------------------------------------------------------------------------------- /man/plot.see_bayesfactor_parameters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_bayesfactor_parameters.Rd -------------------------------------------------------------------------------- /man/plot.see_check_collinearity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_check_collinearity.Rd -------------------------------------------------------------------------------- /man/plot.see_check_dag.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_check_dag.Rd -------------------------------------------------------------------------------- /man/plot.see_check_distribution.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_check_distribution.Rd -------------------------------------------------------------------------------- /man/plot.see_check_heteroscedasticity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_check_heteroscedasticity.Rd -------------------------------------------------------------------------------- /man/plot.see_check_homogeneity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_check_homogeneity.Rd -------------------------------------------------------------------------------- /man/plot.see_check_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_check_model.Rd -------------------------------------------------------------------------------- /man/plot.see_check_normality.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_check_normality.Rd -------------------------------------------------------------------------------- /man/plot.see_check_outliers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_check_outliers.Rd -------------------------------------------------------------------------------- /man/plot.see_compare_parameters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_compare_parameters.Rd -------------------------------------------------------------------------------- /man/plot.see_compare_performance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_compare_performance.Rd -------------------------------------------------------------------------------- /man/plot.see_effectsize_table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_effectsize_table.Rd -------------------------------------------------------------------------------- /man/plot.see_equivalence_test.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_equivalence_test.Rd -------------------------------------------------------------------------------- /man/plot.see_estimate_contrasts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_estimate_contrasts.Rd -------------------------------------------------------------------------------- /man/plot.see_estimate_density.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_estimate_density.Rd -------------------------------------------------------------------------------- /man/plot.see_hdi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_hdi.Rd -------------------------------------------------------------------------------- /man/plot.see_n_factors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_n_factors.Rd -------------------------------------------------------------------------------- /man/plot.see_p_direction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_p_direction.Rd -------------------------------------------------------------------------------- /man/plot.see_p_function.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_p_function.Rd -------------------------------------------------------------------------------- /man/plot.see_p_significance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_p_significance.Rd -------------------------------------------------------------------------------- /man/plot.see_parameters_brms_meta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_parameters_brms_meta.Rd -------------------------------------------------------------------------------- /man/plot.see_parameters_distribution.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_parameters_distribution.Rd -------------------------------------------------------------------------------- /man/plot.see_parameters_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_parameters_model.Rd -------------------------------------------------------------------------------- /man/plot.see_parameters_pca.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_parameters_pca.Rd -------------------------------------------------------------------------------- /man/plot.see_parameters_simulate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_parameters_simulate.Rd -------------------------------------------------------------------------------- /man/plot.see_performance_roc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_performance_roc.Rd -------------------------------------------------------------------------------- /man/plot.see_performance_simres.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_performance_simres.Rd -------------------------------------------------------------------------------- /man/plot.see_point_estimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_point_estimate.Rd -------------------------------------------------------------------------------- /man/plot.see_rope.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_rope.Rd -------------------------------------------------------------------------------- /man/plot.see_si.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plot.see_si.Rd -------------------------------------------------------------------------------- /man/plots.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/plots.Rd -------------------------------------------------------------------------------- /man/print.see_performance_pp_check.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/print.see_performance_pp_check.Rd -------------------------------------------------------------------------------- /man/scale_color_bluebrown.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/scale_color_bluebrown.Rd -------------------------------------------------------------------------------- /man/scale_color_colorhex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/scale_color_colorhex.Rd -------------------------------------------------------------------------------- /man/scale_color_flat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/scale_color_flat.Rd -------------------------------------------------------------------------------- /man/scale_color_material.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/scale_color_material.Rd -------------------------------------------------------------------------------- /man/scale_color_metro.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/scale_color_metro.Rd -------------------------------------------------------------------------------- /man/scale_color_okabeito.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/scale_color_okabeito.Rd -------------------------------------------------------------------------------- /man/scale_color_pizza.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/scale_color_pizza.Rd -------------------------------------------------------------------------------- /man/scale_color_see.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/scale_color_see.Rd -------------------------------------------------------------------------------- /man/scale_color_social.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/scale_color_social.Rd -------------------------------------------------------------------------------- /man/see-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/see-package.Rd -------------------------------------------------------------------------------- /man/see_colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/see_colors.Rd -------------------------------------------------------------------------------- /man/social_colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/social_colors.Rd -------------------------------------------------------------------------------- /man/theme_abyss.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/theme_abyss.Rd -------------------------------------------------------------------------------- /man/theme_azurelight.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/theme_azurelight.Rd -------------------------------------------------------------------------------- /man/theme_blackboard.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/theme_blackboard.Rd -------------------------------------------------------------------------------- /man/theme_lucid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/theme_lucid.Rd -------------------------------------------------------------------------------- /man/theme_modern.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/theme_modern.Rd -------------------------------------------------------------------------------- /man/theme_radar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/man/theme_radar.Rd -------------------------------------------------------------------------------- /paper/apa.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/apa.csl -------------------------------------------------------------------------------- /paper/paper.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/paper.Rmd -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/paper.log -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/paper.md -------------------------------------------------------------------------------- /paper/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/paper.pdf -------------------------------------------------------------------------------- /paper/paper_files/figure-latex/bayestestR-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/paper_files/figure-latex/bayestestR-1.pdf -------------------------------------------------------------------------------- /paper/paper_files/figure-latex/correlation-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/paper_files/figure-latex/correlation-1.pdf -------------------------------------------------------------------------------- /paper/paper_files/figure-latex/effectsize-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/paper_files/figure-latex/effectsize-1.pdf -------------------------------------------------------------------------------- /paper/paper_files/figure-latex/modelbased1-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/paper_files/figure-latex/modelbased1-1.pdf -------------------------------------------------------------------------------- /paper/paper_files/figure-latex/modelbased2-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/paper_files/figure-latex/modelbased2-1.pdf -------------------------------------------------------------------------------- /paper/paper_files/figure-latex/parameters1-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/paper_files/figure-latex/parameters1-1.pdf -------------------------------------------------------------------------------- /paper/paper_files/figure-latex/parameters2-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/paper_files/figure-latex/parameters2-1.pdf -------------------------------------------------------------------------------- /paper/paper_files/figure-latex/performance-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/paper/paper_files/figure-latex/performance-1.pdf -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/revdep/check.R -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /see.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/see.Rproj -------------------------------------------------------------------------------- /see.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/see.code-workspace -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_binomdensity/geom-binomdensity-auto-scale-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/geom_binomdensity/geom-binomdensity-auto-scale-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_binomdensity/geom-binomdensity-basic-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/geom_binomdensity/geom-binomdensity-basic-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_binomdensity/geom-binomdensity-custom-scale-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/geom_binomdensity/geom-binomdensity-custom-scale-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_binomdensity/geom-binomdensity-density-scale-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/geom_binomdensity/geom-binomdensity-density-scale-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_binomdensity/geom-binomdensity-proportion-scale-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/geom_binomdensity/geom-binomdensity-proportion-scale-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/geom_binomdensity/geom-binomdensity-with-iris-data-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/geom_binomdensity/geom-binomdensity-with-iris-data-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_collinearity/plot-check-collinearity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_collinearity/plot-check-collinearity.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-all-adjusted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-all-adjusted.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-all.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-current-adjusted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-current-adjusted.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-current.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-current.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-direct1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-direct1.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-direct2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-direct2.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-direct3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-direct3.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-direct4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-direct4.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-multiple-adjustments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-multiple-adjustments.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-required-adjusted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-required-adjusted.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-required.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-required.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-total1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-total1.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-total2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-total2.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-total3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-total3.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_dag/plot-check-dag-total4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_dag/plot-check-dag-total4.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_normality/check-normality-works-fa-detrend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_normality/check-normality-works-fa-detrend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_normality/check-normality-works-fa-nodetrend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_normality/check-normality-works-fa-nodetrend.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_normality/check-normality-works-fa-pp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_normality/check-normality-works-fa-pp.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_normality/check-normality-works-lm-density.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_normality/check-normality-works-lm-density.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_normality/check-normality-works-lm-pp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_normality/check-normality-works-lm-pp.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_normality/check-normality-works-lm-qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_normality/check-normality-works-lm-qq.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_normality/check-normality-works-lmer-fixed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_normality/check-normality-works-lmer-fixed.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.check_normality/check-normality-works-lmer-random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.check_normality/check-normality-works-lmer-random.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.compare_parameters/plot-compare-parameters-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.compare_parameters/plot-compare-parameters-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.effectsize_table/aov-eta-squared-dot-plot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.effectsize_table/aov-eta-squared-dot-plot.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.estimate_density/plot-estimate-density-with-piors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.estimate_density/plot-estimate-density-with-piors.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.n_factors/area-graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.n_factors/area-graph.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.n_factors/bar-graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.n_factors/bar-graph.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.n_factors/line-graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.n_factors/line-graph.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.p_direction/plot-p-dir-frequ1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.p_direction/plot-p-dir-frequ1.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.p_direction/plot-p-dir-frequ2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.p_direction/plot-p-dir-frequ2.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.p_direction/plot-p-dir-glmmtmb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.p_direction/plot-p-dir-glmmtmb.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.p_significance/plot-p-sig-frequ1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.p_significance/plot-p-sig-frequ1.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.p_significance/plot-p-sig-frequ2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.p_significance/plot-p-sig-frequ2.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.p_significance/plot-p-sig-frequ3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.p_significance/plot-p-sig-frequ3.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.p_significance/plot-p-sig-glmmtmb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.p_significance/plot-p-sig-glmmtmb.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.p_significance/plot-p-sig-simple-threshold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.p_significance/plot-p-sig-simple-threshold.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.p_significance/plot-p-sig-threshold-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.p_significance/plot-p-sig-threshold-2.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-1.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-doublerandom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-doublerandom.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-gam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-gam.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-no-dir.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-no-dir.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-0.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-1.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-2.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-3.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-4.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-5.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.parameters_model/plot-model-parameters-random-6.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.performance_pp_check/pp-check-glm-cbind-binomial-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.performance_pp_check/pp-check-glm-cbind-binomial-1.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.performance_pp_check/pp-check-glm-cbind-binomial-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.performance_pp_check/pp-check-glm-cbind-binomial-2.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.performance_pp_check/pp-check-glm-cbind-binomial-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.performance_pp_check/pp-check-glm-cbind-binomial-3.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.performance_pp_check/pp-check-glm-cbind-binomial-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.performance_pp_check/pp-check-glm-cbind-binomial-4.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.performance_pp_check/pp-check-lm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.performance_pp_check/pp-check-lm.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plot.performance_roc/plot-see-performance-roc-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plot.performance_roc/plot-see-performance-roc-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/plots-basic-combination-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plots/plots-basic-combination-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/plots-with-2x2-layout-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plots/plots-with-2x2-layout-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/plots-with-custom-tags-and-title-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plots/plots-with-custom-tags-and-title-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/plots-with-tags-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plots/plots-with-tags-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/plots/plots-with-three-plots-and-custom-layout-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/plots/plots-with-three-plots-and-custom-layout-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale_color_colorhex_c/scale-fill-colorhex-c-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/scale_color_colorhex_c/scale-fill-colorhex-c-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale_color_colorhex_c/scale-fill-colorhex-d-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/scale_color_colorhex_c/scale-fill-colorhex-d-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale_color_okabeito/scale-color-okabeito-default-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/scale_color_okabeito/scale-color-okabeito-default-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale_color_okabeito/scale-color-okabeito-full-original-palette-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/scale_color_okabeito/scale-color-okabeito-full-original-palette-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale_color_okabeito/scale-color-okabeito-reversed-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/scale_color_okabeito/scale-color-okabeito-reversed-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale_color_okabeito/scale-fill-oi-alias-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/scale_color_okabeito/scale-fill-oi-alias-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale_color_okabeito/scale-fill-okabeito-black-first-palette-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/scale_color_okabeito/scale-fill-okabeito-black-first-palette-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale_color_okabeito/scale-fill-okabeito-custom-order-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/scale_color_okabeito/scale-fill-okabeito-custom-order-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/scale_color_okabeito/scale-fill-okabeito-default-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/scale_color_okabeito/scale-fill-okabeito-default-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_bayestestr_plots/plot-see-bayesfactor-models-works-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_bayestestr_plots/plot-see-bayesfactor-models-works-1.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_bayestestr_plots/plot-see-bayesfactor-models-works-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_bayestestr_plots/plot-see-bayesfactor-models-works-2.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_geoms_coords/coord-radar-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_geoms_coords/coord-radar-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_geoms_coords/geom-point2-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_geoms_coords/geom-point2-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_geoms_coords/geom-poolpoint-works-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_geoms_coords/geom-poolpoint-works-1.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_geoms_coords/geom-poolpoint-works-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_geoms_coords/geom-poolpoint-works-2.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_geoms_coords/geom-violindot-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_geoms_coords/geom-violindot-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_geoms_coords/geom-violinhalf-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_geoms_coords/geom-violinhalf-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_scale_color/scale-color-bluebrown-d-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_scale_color/scale-color-bluebrown-d-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_scale_color/scale-color-flat-c-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_scale_color/scale-color-flat-c-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_scale_color/scale-color-pizza-c-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_scale_color/scale-color-pizza-c-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_scale_color/scale-color-pizza-d-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_scale_color/scale-color-pizza-d-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_scale_color/scale-color-social-default-gradient-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_scale_color/scale-color-social-default-gradient-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_scale_color/scale-color-social-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_scale_color/scale-color-social-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_scale_color/scale-fill-flat-d-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_scale_color/scale-fill-flat-d-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_scale_color/scale-fill-material-c-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_scale_color/scale-fill-material-c-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_scale_color/scale-fill-material-d-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_scale_color/scale-fill-material-d-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_scale_color/scale-fill-metro-c-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_scale_color/scale-fill-metro-c-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_scale_color/scale-fill-metro-d-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_scale_color/scale-fill-metro-d-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_scale_color/scale-fill-see-c-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_scale_color/scale-fill-see-c-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_scale_color/scale-fill-see-d-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_scale_color/scale-fill-see-d-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_themes/theme-abyss-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_themes/theme-abyss-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_themes/theme-azurelight-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_themes/theme-azurelight-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_themes/theme-blackboard-works-with-base-size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_themes/theme-blackboard-works-with-base-size.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_themes/theme-blackboard-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_themes/theme-blackboard-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_themes/theme-lucid-works-with-base-size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_themes/theme-lucid-works-with-base-size.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_themes/theme-lucid-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_themes/theme-lucid-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_themes/theme-modern-with-ticks-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_themes/theme-modern-with-ticks-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_themes/theme-modern-works-with-base-size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_themes/theme-modern-works-with-base-size.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_themes/theme-modern-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_themes/theme-modern-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/vdiffr_themes/theme-radar-works.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/vdiffr_themes/theme-radar-works.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-multimethods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-multimethods.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-works-bars-method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-works-bars-method.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-works-bars-rescaled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-works-bars-rescaled.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-works-count-method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-works-count-method.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-works-default-method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-works-default-method.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-works-scree-method-z-score.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-works-scree-method-z-score.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-works-scree-method.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/_snaps/windows/plot.check_outliers/plot-see-check-outliers-works-scree-method.svg -------------------------------------------------------------------------------- /tests/testthat/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/helper.R -------------------------------------------------------------------------------- /tests/testthat/test-check_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-check_model.R -------------------------------------------------------------------------------- /tests/testthat/test-geom_binomdensity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-geom_binomdensity.R -------------------------------------------------------------------------------- /tests/testthat/test-golden_ratio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-golden_ratio.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.check_collinearity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.check_collinearity.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.check_dag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.check_dag.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.check_distribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.check_distribution.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.check_heteroscedasticity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.check_heteroscedasticity.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.check_homogeneity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.check_homogeneity.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.check_normality.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.check_normality.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.check_outliers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.check_outliers.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.cluster_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.cluster_analysis.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.compare_parameters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.compare_parameters.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.compare_performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.compare_performance.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.describe_distribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.describe_distribution.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.dw_data_tabulate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.dw_data_tabulate.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.easycormatrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.easycormatrix.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.effectsize_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.effectsize_table.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.equivalence_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.equivalence_test.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.estimate_contrasts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.estimate_contrasts.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.estimate_density.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.estimate_density.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.hdi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.hdi.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.n_factors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.n_factors.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.p_direction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.p_direction.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.p_significance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.p_significance.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.parameters_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.parameters_model.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.parameters_pca.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.parameters_pca.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.parameters_simulate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.parameters_simulate.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.performance_pp_check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.performance_pp_check.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.performance_roc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.performance_roc.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.point_estimates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.point_estimates.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.rope.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.rope.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.si.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.si.R -------------------------------------------------------------------------------- /tests/testthat/test-plot.simulate_parameters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plot.simulate_parameters.R -------------------------------------------------------------------------------- /tests/testthat/test-plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-plots.R -------------------------------------------------------------------------------- /tests/testthat/test-scale_color_colorhex_c.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-scale_color_colorhex_c.R -------------------------------------------------------------------------------- /tests/testthat/test-scale_color_okabeito.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-scale_color_okabeito.R -------------------------------------------------------------------------------- /tests/testthat/test-scale_color_values.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-scale_color_values.R -------------------------------------------------------------------------------- /tests/testthat/test-vdiffr_bayestestr_plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-vdiffr_bayestestr_plots.R -------------------------------------------------------------------------------- /tests/testthat/test-vdiffr_geoms_coords.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-vdiffr_geoms_coords.R -------------------------------------------------------------------------------- /tests/testthat/test-vdiffr_scale_color.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-vdiffr_scale_color.R -------------------------------------------------------------------------------- /tests/testthat/test-vdiffr_themes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/tests/testthat/test-vdiffr_themes.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/bayestestR.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/vignettes/bayestestR.Rmd -------------------------------------------------------------------------------- /vignettes/correlation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/vignettes/correlation.Rmd -------------------------------------------------------------------------------- /vignettes/datawizard.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/vignettes/datawizard.Rmd -------------------------------------------------------------------------------- /vignettes/effectsize.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/vignettes/effectsize.Rmd -------------------------------------------------------------------------------- /vignettes/modelbased.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/vignettes/modelbased.Rmd -------------------------------------------------------------------------------- /vignettes/parameters.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/vignettes/parameters.Rmd -------------------------------------------------------------------------------- /vignettes/performance.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/vignettes/performance.Rmd -------------------------------------------------------------------------------- /vignettes/seecolorscales.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/vignettes/seecolorscales.Rmd -------------------------------------------------------------------------------- /vignettes/seecolorscales_dark.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/see/HEAD/vignettes/seecolorscales_dark.Rmd --------------------------------------------------------------------------------