├── .Rbuildignore ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── feature-request.yml │ ├── question.yml │ └── z_copilot-issue.yml ├── SUPPORT.md ├── copilot-instructions.md ├── dependabot.yml └── workflows │ ├── DROPDOWN-BEHAVIOR-EXPLANATION.md │ ├── R-CMD-check-hard.yml │ ├── R-CMD-check.yml │ ├── README-auto-assign-copilot.md │ ├── auto-assign-copilot.yml │ ├── check-all-examples.yml │ ├── check-link-rot.yml │ ├── check-random-test-order.yml │ ├── check-readme.yml │ ├── check-spelling.yml │ ├── check-styling.yml │ ├── check-test-warnings.yml │ ├── check-vignette-warnings.yml │ ├── copilot-setup-steps.yml │ ├── copy-issue-labels.yml │ ├── html-5-check.yml │ ├── lint-changed-files.yml │ ├── lint.yml │ ├── pkgdown-no-suggests.yml │ ├── pkgdown.yml │ ├── rhub.yml │ ├── test-coverage-examples.yml │ ├── test-coverage.yml │ └── update-to-latest-easystats.yml ├── .gitignore ├── .lintr ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── cite_easystats.R ├── format_algorithm.R ├── format_citation.R ├── format_formula.R ├── format_model.R ├── reexports.R ├── report-package.R ├── report.BFBayesFactor.R ├── report.MixMod.R ├── report.R ├── report.aov.R ├── report.bayesfactor_models.R ├── report.brmsfit.R ├── report.character.R ├── report.compare.loo.R ├── report.compare_performance.R ├── report.coxph.R ├── report.data.frame.R ├── report.default.R ├── report.estimate_contrasts.R ├── report.factor.R ├── report.glm.R ├── report.glmmTMB.R ├── report.htest.R ├── report.ivreg.R ├── report.lavaan.R ├── report.lm.R ├── report.lme.R ├── report.lme4.R ├── report.numeric.R ├── report.sessionInfo.R ├── report.stanreg.R ├── report.survreg.R ├── report.test_performance.R ├── report.zeroinfl.R ├── report_effectsize.R ├── report_htest_chi2.R ├── report_htest_cor.R ├── report_htest_fisher.R ├── report_htest_friedman.R ├── report_htest_kruskal.R ├── report_htest_ttest.R ├── report_htest_wilcox.R ├── report_info.R ├── report_intercept.R ├── report_misc.R ├── report_model.R ├── report_parameters.R ├── report_participants.R ├── report_performance.R ├── report_priors.R ├── report_random.R ├── report_s.R ├── report_sample.R ├── report_statistics.R ├── report_table.R ├── report_text.R ├── utils_combine_tables.R ├── utils_error_message.R ├── utils_grouped_df.R ├── utils_misspelled_variables.R └── zzz.R ├── README.Rmd ├── README.md ├── air.toml ├── cran-comments.md ├── flint ├── cache_file_state.rds ├── config.yml └── rules │ └── builtin │ ├── T_and_F_symbol.yml │ ├── absolute_path.yml │ ├── any_duplicated.yml │ ├── any_is_na.yml │ ├── class_equals.yml │ ├── condition_message.yml │ ├── double_assignment.yml │ ├── duplicate_argument.yml │ ├── empty_assignment.yml │ ├── equal_assignment.yml │ ├── equals_na.yml │ ├── expect_comparison.yml │ ├── expect_identical.yml │ ├── expect_length.yml │ ├── expect_named.yml │ ├── expect_not.yml │ ├── expect_null.yml │ ├── expect_true_false.yml │ ├── expect_type.yml │ ├── for_loop_index.yml │ ├── function_return.yml │ ├── implicit_assignment.yml │ ├── is_numeric.yml │ ├── length_levels.yml │ ├── length_test.yml │ ├── lengths.yml │ ├── library_call.yml │ ├── literal_coercion.yml │ ├── matrix_apply.yml │ ├── missing_argument.yml │ ├── nested_ifelse.yml │ ├── numeric_leading_zero.yml │ ├── outer_negation.yml │ ├── package_hooks.yml │ ├── paste.yml │ ├── redundant_equals.yml │ ├── redundant_ifelse.yml │ ├── rep_len.yml │ ├── right_assignment.yml │ ├── sample_int.yml │ ├── semicolon.yml │ ├── seq.yml │ ├── sort.yml │ ├── todo_comment.yml │ ├── undesirable_function.yml │ ├── undesirable_operator.yml │ ├── unnecessary_nesting.yml │ ├── unreachable_code.yml │ └── which_grepl.yml ├── inst ├── CITATION ├── WORDLIST ├── easystats_bib.bib └── easystats_bib.yaml ├── man ├── as.report.Rd ├── cite_easystats.Rd ├── figures │ ├── allthethings.jpg │ ├── icon_document.svg │ ├── icon_nature.svg │ ├── icon_validated.svg │ ├── issue_bug.png │ ├── issue_featureidea.png │ ├── issue_help.png │ ├── issue_opinion.png │ ├── logo.ai │ ├── logo.png │ ├── monster.ai │ ├── monster.png │ ├── old_logo.ai │ ├── old_logo.png │ ├── workflow.png │ └── workflow.pptx ├── format_citation.Rd ├── format_formula.Rd ├── reexports.Rd ├── report-package.Rd ├── report.BFBayesFactor.Rd ├── report.Rd ├── report.aov.Rd ├── report.bayesfactor_models.Rd ├── report.brmsfit.Rd ├── report.compare.loo.Rd ├── report.compare_performance.Rd ├── report.data.frame.Rd ├── report.default.Rd ├── report.estimate_contrasts.Rd ├── report.htest.Rd ├── report.lavaan.Rd ├── report.lm.Rd ├── report.sessionInfo.Rd ├── report.stanreg.Rd ├── report.test_performance.Rd ├── report_date.Rd ├── report_effectsize.Rd ├── report_info.Rd ├── report_intercept.Rd ├── report_model.Rd ├── report_parameters.Rd ├── report_participants.Rd ├── report_performance.Rd ├── report_priors.Rd ├── report_random.Rd ├── report_s.Rd ├── report_sample.Rd ├── report_statistics.Rd ├── report_table.Rd └── report_text.Rd ├── old ├── render-readme._yml ├── report.easycorrelation.R ├── report.lavaan.R └── report.modelbased.R ├── paper ├── apa.csl ├── paper.Rmd ├── paper.bib ├── paper.log ├── paper.md └── paper.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 ├── report.Rproj ├── report.code-workspace ├── tests ├── testthat.R └── testthat │ ├── _snaps │ └── windows │ │ ├── report.aov.md │ │ ├── report.brmsfit.md │ │ ├── report.data.frame.md │ │ ├── report.htest-chi2.md │ │ ├── report.htest-correlation.md │ │ ├── report.htest-fisher.md │ │ ├── report.htest-friedman.md │ │ ├── report.htest-kruskal.md │ │ ├── report.htest-t-test.md │ │ ├── report.htest-wilcox.md │ │ ├── report.ivreg.md │ │ ├── report.lavaan.md │ │ ├── report.lm.md │ │ ├── report.lmer.md │ │ ├── report.stanreg.md │ │ ├── report.survreg.md │ │ ├── report_participants.md │ │ ├── report_performance.md │ │ ├── report_s.md │ │ └── report_sample.md │ ├── setup-00-toolchain.R │ ├── test-brms-performance-fix.R │ ├── test-cite_easystats.R │ ├── test-coverage-MixMod.R │ ├── test-coverage-brmsfit.R │ ├── test-coverage-compare-loo.R │ ├── test-coverage-glmmTMB.R │ ├── test-format_algorithm_formula.R │ ├── test-format_citation.R │ ├── test-format_model.R │ ├── test-glmmtmb-duplication-fix.R │ ├── test-issue-481-glmmtmb-duplication.R │ ├── test-report.BFBayesFactor.R │ ├── test-report.MixMod.R │ ├── test-report.aov.R │ ├── test-report.bayesfactor_models.R │ ├── test-report.brmsfit.R │ ├── test-report.compare.loo.R │ ├── test-report.compare_performance.R │ ├── test-report.data.frame.R │ ├── test-report.estimate_contrasts.R │ ├── test-report.glmmTMB.R │ ├── test-report.htest-chi2.R │ ├── test-report.htest-correlation.R │ ├── test-report.htest-fisher.R │ ├── test-report.htest-friedman.R │ ├── test-report.htest-kruskal.R │ ├── test-report.htest-t-test.R │ ├── test-report.htest-wilcox.R │ ├── test-report.ivreg.R │ ├── test-report.lavaan.R │ ├── test-report.lm.R │ ├── test-report.lme.R │ ├── test-report.lmer.R │ ├── test-report.numeric.R │ ├── test-report.sessionInfo.R │ ├── test-report.stanreg.R │ ├── test-report.survreg.R │ ├── test-report.test_performance.R │ ├── test-report_basic_methods.R │ ├── test-report_info_misc_text.R │ ├── test-report_intercept.R │ ├── test-report_participants.R │ ├── test-report_performance.R │ ├── test-report_s.R │ ├── test-report_sample.R │ ├── test-report_stats_params.R │ ├── test-report_table.R │ └── test-utils_helpers.R └── vignettes ├── bibliography.bib ├── cite_packages.Rmd ├── new_models.Rmd ├── report.Rmd └── report_table.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Prettier formatting changes 2 | bd3a63ec6a930375dd522f21ad180971c0fafdf8 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: easystats 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/z_copilot-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/ISSUE_TEMPLATE/z_copilot-issue.yml -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/DROPDOWN-BEHAVIOR-EXPLANATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/DROPDOWN-BEHAVIOR-EXPLANATION.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check-hard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/R-CMD-check-hard.yml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/R-CMD-check.yml -------------------------------------------------------------------------------- /.github/workflows/README-auto-assign-copilot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/README-auto-assign-copilot.md -------------------------------------------------------------------------------- /.github/workflows/auto-assign-copilot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/auto-assign-copilot.yml -------------------------------------------------------------------------------- /.github/workflows/check-all-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/check-all-examples.yml -------------------------------------------------------------------------------- /.github/workflows/check-link-rot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/check-link-rot.yml -------------------------------------------------------------------------------- /.github/workflows/check-random-test-order.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/check-random-test-order.yml -------------------------------------------------------------------------------- /.github/workflows/check-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/check-readme.yml -------------------------------------------------------------------------------- /.github/workflows/check-spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/check-spelling.yml -------------------------------------------------------------------------------- /.github/workflows/check-styling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/check-styling.yml -------------------------------------------------------------------------------- /.github/workflows/check-test-warnings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/check-test-warnings.yml -------------------------------------------------------------------------------- /.github/workflows/check-vignette-warnings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/check-vignette-warnings.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/copy-issue-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/copy-issue-labels.yml -------------------------------------------------------------------------------- /.github/workflows/html-5-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/html-5-check.yml -------------------------------------------------------------------------------- /.github/workflows/lint-changed-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/lint-changed-files.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pkgdown-no-suggests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/pkgdown-no-suggests.yml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/pkgdown.yml -------------------------------------------------------------------------------- /.github/workflows/rhub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/rhub.yml -------------------------------------------------------------------------------- /.github/workflows/test-coverage-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/test-coverage-examples.yml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/test-coverage.yml -------------------------------------------------------------------------------- /.github/workflows/update-to-latest-easystats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.github/workflows/update-to-latest-easystats.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/.lintr -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: report authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/cite_easystats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/cite_easystats.R -------------------------------------------------------------------------------- /R/format_algorithm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/format_algorithm.R -------------------------------------------------------------------------------- /R/format_citation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/format_citation.R -------------------------------------------------------------------------------- /R/format_formula.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/format_formula.R -------------------------------------------------------------------------------- /R/format_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/format_model.R -------------------------------------------------------------------------------- /R/reexports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/reexports.R -------------------------------------------------------------------------------- /R/report-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report-package.R -------------------------------------------------------------------------------- /R/report.BFBayesFactor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.BFBayesFactor.R -------------------------------------------------------------------------------- /R/report.MixMod.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.MixMod.R -------------------------------------------------------------------------------- /R/report.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.R -------------------------------------------------------------------------------- /R/report.aov.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.aov.R -------------------------------------------------------------------------------- /R/report.bayesfactor_models.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.bayesfactor_models.R -------------------------------------------------------------------------------- /R/report.brmsfit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.brmsfit.R -------------------------------------------------------------------------------- /R/report.character.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.character.R -------------------------------------------------------------------------------- /R/report.compare.loo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.compare.loo.R -------------------------------------------------------------------------------- /R/report.compare_performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.compare_performance.R -------------------------------------------------------------------------------- /R/report.coxph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.coxph.R -------------------------------------------------------------------------------- /R/report.data.frame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.data.frame.R -------------------------------------------------------------------------------- /R/report.default.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.default.R -------------------------------------------------------------------------------- /R/report.estimate_contrasts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.estimate_contrasts.R -------------------------------------------------------------------------------- /R/report.factor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.factor.R -------------------------------------------------------------------------------- /R/report.glm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.glm.R -------------------------------------------------------------------------------- /R/report.glmmTMB.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.glmmTMB.R -------------------------------------------------------------------------------- /R/report.htest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.htest.R -------------------------------------------------------------------------------- /R/report.ivreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.ivreg.R -------------------------------------------------------------------------------- /R/report.lavaan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.lavaan.R -------------------------------------------------------------------------------- /R/report.lm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.lm.R -------------------------------------------------------------------------------- /R/report.lme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.lme.R -------------------------------------------------------------------------------- /R/report.lme4.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.lme4.R -------------------------------------------------------------------------------- /R/report.numeric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.numeric.R -------------------------------------------------------------------------------- /R/report.sessionInfo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.sessionInfo.R -------------------------------------------------------------------------------- /R/report.stanreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.stanreg.R -------------------------------------------------------------------------------- /R/report.survreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.survreg.R -------------------------------------------------------------------------------- /R/report.test_performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.test_performance.R -------------------------------------------------------------------------------- /R/report.zeroinfl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report.zeroinfl.R -------------------------------------------------------------------------------- /R/report_effectsize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_effectsize.R -------------------------------------------------------------------------------- /R/report_htest_chi2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_htest_chi2.R -------------------------------------------------------------------------------- /R/report_htest_cor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_htest_cor.R -------------------------------------------------------------------------------- /R/report_htest_fisher.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_htest_fisher.R -------------------------------------------------------------------------------- /R/report_htest_friedman.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_htest_friedman.R -------------------------------------------------------------------------------- /R/report_htest_kruskal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_htest_kruskal.R -------------------------------------------------------------------------------- /R/report_htest_ttest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_htest_ttest.R -------------------------------------------------------------------------------- /R/report_htest_wilcox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_htest_wilcox.R -------------------------------------------------------------------------------- /R/report_info.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_info.R -------------------------------------------------------------------------------- /R/report_intercept.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_intercept.R -------------------------------------------------------------------------------- /R/report_misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_misc.R -------------------------------------------------------------------------------- /R/report_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_model.R -------------------------------------------------------------------------------- /R/report_parameters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_parameters.R -------------------------------------------------------------------------------- /R/report_participants.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_participants.R -------------------------------------------------------------------------------- /R/report_performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_performance.R -------------------------------------------------------------------------------- /R/report_priors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_priors.R -------------------------------------------------------------------------------- /R/report_random.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_random.R -------------------------------------------------------------------------------- /R/report_s.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_s.R -------------------------------------------------------------------------------- /R/report_sample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_sample.R -------------------------------------------------------------------------------- /R/report_statistics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_statistics.R -------------------------------------------------------------------------------- /R/report_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_table.R -------------------------------------------------------------------------------- /R/report_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/report_text.R -------------------------------------------------------------------------------- /R/utils_combine_tables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/utils_combine_tables.R -------------------------------------------------------------------------------- /R/utils_error_message.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/utils_error_message.R -------------------------------------------------------------------------------- /R/utils_grouped_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/utils_grouped_df.R -------------------------------------------------------------------------------- /R/utils_misspelled_variables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/utils_misspelled_variables.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/README.md -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/air.toml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/cran-comments.md -------------------------------------------------------------------------------- /flint/cache_file_state.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/cache_file_state.rds -------------------------------------------------------------------------------- /flint/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/config.yml -------------------------------------------------------------------------------- /flint/rules/builtin/T_and_F_symbol.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/T_and_F_symbol.yml -------------------------------------------------------------------------------- /flint/rules/builtin/absolute_path.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/absolute_path.yml -------------------------------------------------------------------------------- /flint/rules/builtin/any_duplicated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/any_duplicated.yml -------------------------------------------------------------------------------- /flint/rules/builtin/any_is_na.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/any_is_na.yml -------------------------------------------------------------------------------- /flint/rules/builtin/class_equals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/class_equals.yml -------------------------------------------------------------------------------- /flint/rules/builtin/condition_message.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/condition_message.yml -------------------------------------------------------------------------------- /flint/rules/builtin/double_assignment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/double_assignment.yml -------------------------------------------------------------------------------- /flint/rules/builtin/duplicate_argument.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/duplicate_argument.yml -------------------------------------------------------------------------------- /flint/rules/builtin/empty_assignment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/empty_assignment.yml -------------------------------------------------------------------------------- /flint/rules/builtin/equal_assignment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/equal_assignment.yml -------------------------------------------------------------------------------- /flint/rules/builtin/equals_na.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/equals_na.yml -------------------------------------------------------------------------------- /flint/rules/builtin/expect_comparison.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/expect_comparison.yml -------------------------------------------------------------------------------- /flint/rules/builtin/expect_identical.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/expect_identical.yml -------------------------------------------------------------------------------- /flint/rules/builtin/expect_length.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/expect_length.yml -------------------------------------------------------------------------------- /flint/rules/builtin/expect_named.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/expect_named.yml -------------------------------------------------------------------------------- /flint/rules/builtin/expect_not.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/expect_not.yml -------------------------------------------------------------------------------- /flint/rules/builtin/expect_null.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/expect_null.yml -------------------------------------------------------------------------------- /flint/rules/builtin/expect_true_false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/expect_true_false.yml -------------------------------------------------------------------------------- /flint/rules/builtin/expect_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/expect_type.yml -------------------------------------------------------------------------------- /flint/rules/builtin/for_loop_index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/for_loop_index.yml -------------------------------------------------------------------------------- /flint/rules/builtin/function_return.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/function_return.yml -------------------------------------------------------------------------------- /flint/rules/builtin/implicit_assignment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/implicit_assignment.yml -------------------------------------------------------------------------------- /flint/rules/builtin/is_numeric.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/is_numeric.yml -------------------------------------------------------------------------------- /flint/rules/builtin/length_levels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/length_levels.yml -------------------------------------------------------------------------------- /flint/rules/builtin/length_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/length_test.yml -------------------------------------------------------------------------------- /flint/rules/builtin/lengths.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/lengths.yml -------------------------------------------------------------------------------- /flint/rules/builtin/library_call.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/library_call.yml -------------------------------------------------------------------------------- /flint/rules/builtin/literal_coercion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/literal_coercion.yml -------------------------------------------------------------------------------- /flint/rules/builtin/matrix_apply.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/matrix_apply.yml -------------------------------------------------------------------------------- /flint/rules/builtin/missing_argument.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/missing_argument.yml -------------------------------------------------------------------------------- /flint/rules/builtin/nested_ifelse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/nested_ifelse.yml -------------------------------------------------------------------------------- /flint/rules/builtin/numeric_leading_zero.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/numeric_leading_zero.yml -------------------------------------------------------------------------------- /flint/rules/builtin/outer_negation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/outer_negation.yml -------------------------------------------------------------------------------- /flint/rules/builtin/package_hooks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/package_hooks.yml -------------------------------------------------------------------------------- /flint/rules/builtin/paste.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/paste.yml -------------------------------------------------------------------------------- /flint/rules/builtin/redundant_equals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/redundant_equals.yml -------------------------------------------------------------------------------- /flint/rules/builtin/redundant_ifelse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/redundant_ifelse.yml -------------------------------------------------------------------------------- /flint/rules/builtin/rep_len.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/rep_len.yml -------------------------------------------------------------------------------- /flint/rules/builtin/right_assignment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/right_assignment.yml -------------------------------------------------------------------------------- /flint/rules/builtin/sample_int.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/sample_int.yml -------------------------------------------------------------------------------- /flint/rules/builtin/semicolon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/semicolon.yml -------------------------------------------------------------------------------- /flint/rules/builtin/seq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/seq.yml -------------------------------------------------------------------------------- /flint/rules/builtin/sort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/sort.yml -------------------------------------------------------------------------------- /flint/rules/builtin/todo_comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/todo_comment.yml -------------------------------------------------------------------------------- /flint/rules/builtin/undesirable_function.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/undesirable_function.yml -------------------------------------------------------------------------------- /flint/rules/builtin/undesirable_operator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/undesirable_operator.yml -------------------------------------------------------------------------------- /flint/rules/builtin/unnecessary_nesting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/unnecessary_nesting.yml -------------------------------------------------------------------------------- /flint/rules/builtin/unreachable_code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/unreachable_code.yml -------------------------------------------------------------------------------- /flint/rules/builtin/which_grepl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/flint/rules/builtin/which_grepl.yml -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/easystats_bib.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/inst/easystats_bib.bib -------------------------------------------------------------------------------- /inst/easystats_bib.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/inst/easystats_bib.yaml -------------------------------------------------------------------------------- /man/as.report.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/as.report.Rd -------------------------------------------------------------------------------- /man/cite_easystats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/cite_easystats.Rd -------------------------------------------------------------------------------- /man/figures/allthethings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/allthethings.jpg -------------------------------------------------------------------------------- /man/figures/icon_document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/icon_document.svg -------------------------------------------------------------------------------- /man/figures/icon_nature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/icon_nature.svg -------------------------------------------------------------------------------- /man/figures/icon_validated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/icon_validated.svg -------------------------------------------------------------------------------- /man/figures/issue_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/issue_bug.png -------------------------------------------------------------------------------- /man/figures/issue_featureidea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/issue_featureidea.png -------------------------------------------------------------------------------- /man/figures/issue_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/issue_help.png -------------------------------------------------------------------------------- /man/figures/issue_opinion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/issue_opinion.png -------------------------------------------------------------------------------- /man/figures/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/logo.ai -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/monster.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/monster.ai -------------------------------------------------------------------------------- /man/figures/monster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/monster.png -------------------------------------------------------------------------------- /man/figures/old_logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/old_logo.ai -------------------------------------------------------------------------------- /man/figures/old_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/old_logo.png -------------------------------------------------------------------------------- /man/figures/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/workflow.png -------------------------------------------------------------------------------- /man/figures/workflow.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/figures/workflow.pptx -------------------------------------------------------------------------------- /man/format_citation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/format_citation.Rd -------------------------------------------------------------------------------- /man/format_formula.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/format_formula.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/report-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report-package.Rd -------------------------------------------------------------------------------- /man/report.BFBayesFactor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.BFBayesFactor.Rd -------------------------------------------------------------------------------- /man/report.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.Rd -------------------------------------------------------------------------------- /man/report.aov.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.aov.Rd -------------------------------------------------------------------------------- /man/report.bayesfactor_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.bayesfactor_models.Rd -------------------------------------------------------------------------------- /man/report.brmsfit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.brmsfit.Rd -------------------------------------------------------------------------------- /man/report.compare.loo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.compare.loo.Rd -------------------------------------------------------------------------------- /man/report.compare_performance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.compare_performance.Rd -------------------------------------------------------------------------------- /man/report.data.frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.data.frame.Rd -------------------------------------------------------------------------------- /man/report.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.default.Rd -------------------------------------------------------------------------------- /man/report.estimate_contrasts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.estimate_contrasts.Rd -------------------------------------------------------------------------------- /man/report.htest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.htest.Rd -------------------------------------------------------------------------------- /man/report.lavaan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.lavaan.Rd -------------------------------------------------------------------------------- /man/report.lm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.lm.Rd -------------------------------------------------------------------------------- /man/report.sessionInfo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.sessionInfo.Rd -------------------------------------------------------------------------------- /man/report.stanreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.stanreg.Rd -------------------------------------------------------------------------------- /man/report.test_performance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report.test_performance.Rd -------------------------------------------------------------------------------- /man/report_date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_date.Rd -------------------------------------------------------------------------------- /man/report_effectsize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_effectsize.Rd -------------------------------------------------------------------------------- /man/report_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_info.Rd -------------------------------------------------------------------------------- /man/report_intercept.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_intercept.Rd -------------------------------------------------------------------------------- /man/report_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_model.Rd -------------------------------------------------------------------------------- /man/report_parameters.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_parameters.Rd -------------------------------------------------------------------------------- /man/report_participants.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_participants.Rd -------------------------------------------------------------------------------- /man/report_performance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_performance.Rd -------------------------------------------------------------------------------- /man/report_priors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_priors.Rd -------------------------------------------------------------------------------- /man/report_random.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_random.Rd -------------------------------------------------------------------------------- /man/report_s.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_s.Rd -------------------------------------------------------------------------------- /man/report_sample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_sample.Rd -------------------------------------------------------------------------------- /man/report_statistics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_statistics.Rd -------------------------------------------------------------------------------- /man/report_table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_table.Rd -------------------------------------------------------------------------------- /man/report_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/man/report_text.Rd -------------------------------------------------------------------------------- /old/render-readme._yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/old/render-readme._yml -------------------------------------------------------------------------------- /old/report.easycorrelation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/old/report.easycorrelation.R -------------------------------------------------------------------------------- /old/report.lavaan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/old/report.lavaan.R -------------------------------------------------------------------------------- /old/report.modelbased.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/old/report.modelbased.R -------------------------------------------------------------------------------- /paper/apa.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/paper/apa.csl -------------------------------------------------------------------------------- /paper/paper.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/paper/paper.Rmd -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/paper/paper.log -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/paper/paper.md -------------------------------------------------------------------------------- /paper/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/paper/paper.pdf -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /report.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/report.Rproj -------------------------------------------------------------------------------- /report.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/report.code-workspace -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.aov.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.aov.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.brmsfit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.brmsfit.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.data.frame.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.data.frame.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.htest-chi2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.htest-chi2.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.htest-correlation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.htest-correlation.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.htest-fisher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.htest-fisher.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.htest-friedman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.htest-friedman.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.htest-kruskal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.htest-kruskal.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.htest-t-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.htest-t-test.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.htest-wilcox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.htest-wilcox.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.ivreg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.ivreg.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.lavaan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.lavaan.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.lm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.lm.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.lmer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.lmer.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.stanreg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.stanreg.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report.survreg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report.survreg.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report_participants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report_participants.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report_performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report_performance.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report_s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report_s.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/windows/report_sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/_snaps/windows/report_sample.md -------------------------------------------------------------------------------- /tests/testthat/setup-00-toolchain.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/setup-00-toolchain.R -------------------------------------------------------------------------------- /tests/testthat/test-brms-performance-fix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-brms-performance-fix.R -------------------------------------------------------------------------------- /tests/testthat/test-cite_easystats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-cite_easystats.R -------------------------------------------------------------------------------- /tests/testthat/test-coverage-MixMod.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-coverage-MixMod.R -------------------------------------------------------------------------------- /tests/testthat/test-coverage-brmsfit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-coverage-brmsfit.R -------------------------------------------------------------------------------- /tests/testthat/test-coverage-compare-loo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-coverage-compare-loo.R -------------------------------------------------------------------------------- /tests/testthat/test-coverage-glmmTMB.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-coverage-glmmTMB.R -------------------------------------------------------------------------------- /tests/testthat/test-format_algorithm_formula.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-format_algorithm_formula.R -------------------------------------------------------------------------------- /tests/testthat/test-format_citation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-format_citation.R -------------------------------------------------------------------------------- /tests/testthat/test-format_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-format_model.R -------------------------------------------------------------------------------- /tests/testthat/test-glmmtmb-duplication-fix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-glmmtmb-duplication-fix.R -------------------------------------------------------------------------------- /tests/testthat/test-issue-481-glmmtmb-duplication.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-issue-481-glmmtmb-duplication.R -------------------------------------------------------------------------------- /tests/testthat/test-report.BFBayesFactor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.BFBayesFactor.R -------------------------------------------------------------------------------- /tests/testthat/test-report.MixMod.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.MixMod.R -------------------------------------------------------------------------------- /tests/testthat/test-report.aov.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.aov.R -------------------------------------------------------------------------------- /tests/testthat/test-report.bayesfactor_models.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.bayesfactor_models.R -------------------------------------------------------------------------------- /tests/testthat/test-report.brmsfit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.brmsfit.R -------------------------------------------------------------------------------- /tests/testthat/test-report.compare.loo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.compare.loo.R -------------------------------------------------------------------------------- /tests/testthat/test-report.compare_performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.compare_performance.R -------------------------------------------------------------------------------- /tests/testthat/test-report.data.frame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.data.frame.R -------------------------------------------------------------------------------- /tests/testthat/test-report.estimate_contrasts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.estimate_contrasts.R -------------------------------------------------------------------------------- /tests/testthat/test-report.glmmTMB.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.glmmTMB.R -------------------------------------------------------------------------------- /tests/testthat/test-report.htest-chi2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.htest-chi2.R -------------------------------------------------------------------------------- /tests/testthat/test-report.htest-correlation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.htest-correlation.R -------------------------------------------------------------------------------- /tests/testthat/test-report.htest-fisher.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.htest-fisher.R -------------------------------------------------------------------------------- /tests/testthat/test-report.htest-friedman.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.htest-friedman.R -------------------------------------------------------------------------------- /tests/testthat/test-report.htest-kruskal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.htest-kruskal.R -------------------------------------------------------------------------------- /tests/testthat/test-report.htest-t-test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.htest-t-test.R -------------------------------------------------------------------------------- /tests/testthat/test-report.htest-wilcox.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.htest-wilcox.R -------------------------------------------------------------------------------- /tests/testthat/test-report.ivreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.ivreg.R -------------------------------------------------------------------------------- /tests/testthat/test-report.lavaan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.lavaan.R -------------------------------------------------------------------------------- /tests/testthat/test-report.lm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.lm.R -------------------------------------------------------------------------------- /tests/testthat/test-report.lme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.lme.R -------------------------------------------------------------------------------- /tests/testthat/test-report.lmer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.lmer.R -------------------------------------------------------------------------------- /tests/testthat/test-report.numeric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.numeric.R -------------------------------------------------------------------------------- /tests/testthat/test-report.sessionInfo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.sessionInfo.R -------------------------------------------------------------------------------- /tests/testthat/test-report.stanreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.stanreg.R -------------------------------------------------------------------------------- /tests/testthat/test-report.survreg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.survreg.R -------------------------------------------------------------------------------- /tests/testthat/test-report.test_performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report.test_performance.R -------------------------------------------------------------------------------- /tests/testthat/test-report_basic_methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report_basic_methods.R -------------------------------------------------------------------------------- /tests/testthat/test-report_info_misc_text.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report_info_misc_text.R -------------------------------------------------------------------------------- /tests/testthat/test-report_intercept.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report_intercept.R -------------------------------------------------------------------------------- /tests/testthat/test-report_participants.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report_participants.R -------------------------------------------------------------------------------- /tests/testthat/test-report_performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report_performance.R -------------------------------------------------------------------------------- /tests/testthat/test-report_s.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report_s.R -------------------------------------------------------------------------------- /tests/testthat/test-report_sample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report_sample.R -------------------------------------------------------------------------------- /tests/testthat/test-report_stats_params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report_stats_params.R -------------------------------------------------------------------------------- /tests/testthat/test-report_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-report_table.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/tests/testthat/test-utils_helpers.R -------------------------------------------------------------------------------- /vignettes/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/vignettes/bibliography.bib -------------------------------------------------------------------------------- /vignettes/cite_packages.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/vignettes/cite_packages.Rmd -------------------------------------------------------------------------------- /vignettes/new_models.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/vignettes/new_models.Rmd -------------------------------------------------------------------------------- /vignettes/report.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/vignettes/report.Rmd -------------------------------------------------------------------------------- /vignettes/report_table.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easystats/report/HEAD/vignettes/report_table.Rmd --------------------------------------------------------------------------------