├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── test-coverage.yaml ├── .gitignore ├── .lintr ├── .vscode └── settings.json ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── equation.R ├── generate_models.R ├── listwise_delete.R ├── number.R ├── pairwise.R ├── supernova-package.R ├── supernova.R ├── utils-formula.R ├── utils.R ├── variables.R └── zzz.R ├── README.Rmd ├── README.md ├── codecov.yml ├── cran-comments.md ├── inst └── WORDLIST ├── man ├── anova_tbl.Rd ├── autoplot.pairwise.Rd ├── cat_line.Rd ├── check_pairwise_args.Rd ├── drop_term.Rd ├── equation.Rd ├── figures │ ├── README-samp_dist_of_b1-1.png │ ├── README-samp_dist_of_hp_coef-1.png │ ├── README-unnamed-chunk-21-1.png │ ├── README-unnamed-chunk-23-1.png │ ├── README-unnamed-chunk-24-1.png │ └── logo.png ├── find_bars.Rd ├── find_categorical_vars.Rd ├── formula_building.Rd ├── formula_expansion.Rd ├── formula_extraction.Rd ├── formula_string.Rd ├── frm_remove.Rd ├── frm_string.Rd ├── generate_models.Rd ├── insert_row.Rd ├── insert_rule.Rd ├── level_pairs.Rd ├── listwise_delete.Rd ├── lower_tri.Rd ├── means_and_counts.Rd ├── new_pairwise_tbl.Rd ├── no_bars.Rd ├── normalize_term.Rd ├── number.Rd ├── pad.Rd ├── pad_len.Rd ├── pairwise.Rd ├── paste_line.Rd ├── refit_categorical.Rd ├── rename.Rd ├── resolve_type.Rd ├── row_blank.Rd ├── row_error.Rd ├── row_term.Rd ├── select_terms.Rd ├── supernova.Rd ├── update_in_env.Rd └── variables.Rd ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── failures.md └── problems.md ├── scripts └── logo.R ├── supernova.Rproj └── tests ├── figs ├── deps.txt └── pairwise │ ├── bonferroni-one-variable.svg │ ├── multiple-plots-raceethnic.svg │ ├── multiple-plots-sex-raceethnic.svg │ ├── multiple-plots-sex.svg │ ├── t-test-one-variable.svg │ └── tukey-one-variable.svg ├── testthat.R └── testthat ├── _snaps ├── generate_models.md ├── listwise_delete.md ├── number.md ├── pairwise.md ├── pairwise │ ├── bonferroni-one-variable.svg │ ├── multiple-plots-term-factor-am.svg │ ├── multiple-plots-term-factor-cyl-factor-am.svg │ ├── multiple-plots-term-factor-cyl.svg │ ├── t-test-one-variable.svg │ └── tukey-one-variable.svg ├── supernova.lmerMod.md └── supernova.md ├── setup.R ├── test-equation.R ├── test-generate_models.R ├── test-listwise_delete.R ├── test-number.R ├── test-pairwise.R ├── test-supernova.lmerMod.R ├── test-supernova.r ├── test-utils-formula.R ├── test-utils.R └── test-variables.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/.lintr -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/equation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/R/equation.R -------------------------------------------------------------------------------- /R/generate_models.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/R/generate_models.R -------------------------------------------------------------------------------- /R/listwise_delete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/R/listwise_delete.R -------------------------------------------------------------------------------- /R/number.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/R/number.R -------------------------------------------------------------------------------- /R/pairwise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/R/pairwise.R -------------------------------------------------------------------------------- /R/supernova-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/R/supernova-package.R -------------------------------------------------------------------------------- /R/supernova.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/R/supernova.R -------------------------------------------------------------------------------- /R/utils-formula.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/R/utils-formula.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/variables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/R/variables.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/anova_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/anova_tbl.Rd -------------------------------------------------------------------------------- /man/autoplot.pairwise.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/autoplot.pairwise.Rd -------------------------------------------------------------------------------- /man/cat_line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/cat_line.Rd -------------------------------------------------------------------------------- /man/check_pairwise_args.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/check_pairwise_args.Rd -------------------------------------------------------------------------------- /man/drop_term.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/drop_term.Rd -------------------------------------------------------------------------------- /man/equation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/equation.Rd -------------------------------------------------------------------------------- /man/figures/README-samp_dist_of_b1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/figures/README-samp_dist_of_b1-1.png -------------------------------------------------------------------------------- /man/figures/README-samp_dist_of_hp_coef-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/figures/README-samp_dist_of_hp_coef-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/figures/README-unnamed-chunk-21-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-23-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/figures/README-unnamed-chunk-23-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/figures/README-unnamed-chunk-24-1.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/find_bars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/find_bars.Rd -------------------------------------------------------------------------------- /man/find_categorical_vars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/find_categorical_vars.Rd -------------------------------------------------------------------------------- /man/formula_building.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/formula_building.Rd -------------------------------------------------------------------------------- /man/formula_expansion.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/formula_expansion.Rd -------------------------------------------------------------------------------- /man/formula_extraction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/formula_extraction.Rd -------------------------------------------------------------------------------- /man/formula_string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/formula_string.Rd -------------------------------------------------------------------------------- /man/frm_remove.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/frm_remove.Rd -------------------------------------------------------------------------------- /man/frm_string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/frm_string.Rd -------------------------------------------------------------------------------- /man/generate_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/generate_models.Rd -------------------------------------------------------------------------------- /man/insert_row.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/insert_row.Rd -------------------------------------------------------------------------------- /man/insert_rule.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/insert_rule.Rd -------------------------------------------------------------------------------- /man/level_pairs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/level_pairs.Rd -------------------------------------------------------------------------------- /man/listwise_delete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/listwise_delete.Rd -------------------------------------------------------------------------------- /man/lower_tri.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/lower_tri.Rd -------------------------------------------------------------------------------- /man/means_and_counts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/means_and_counts.Rd -------------------------------------------------------------------------------- /man/new_pairwise_tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/new_pairwise_tbl.Rd -------------------------------------------------------------------------------- /man/no_bars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/no_bars.Rd -------------------------------------------------------------------------------- /man/normalize_term.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/normalize_term.Rd -------------------------------------------------------------------------------- /man/number.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/number.Rd -------------------------------------------------------------------------------- /man/pad.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/pad.Rd -------------------------------------------------------------------------------- /man/pad_len.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/pad_len.Rd -------------------------------------------------------------------------------- /man/pairwise.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/pairwise.Rd -------------------------------------------------------------------------------- /man/paste_line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/paste_line.Rd -------------------------------------------------------------------------------- /man/refit_categorical.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/refit_categorical.Rd -------------------------------------------------------------------------------- /man/rename.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/rename.Rd -------------------------------------------------------------------------------- /man/resolve_type.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/resolve_type.Rd -------------------------------------------------------------------------------- /man/row_blank.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/row_blank.Rd -------------------------------------------------------------------------------- /man/row_error.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/row_error.Rd -------------------------------------------------------------------------------- /man/row_term.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/row_term.Rd -------------------------------------------------------------------------------- /man/select_terms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/select_terms.Rd -------------------------------------------------------------------------------- /man/supernova.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/supernova.Rd -------------------------------------------------------------------------------- /man/update_in_env.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/update_in_env.Rd -------------------------------------------------------------------------------- /man/variables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/man/variables.Rd -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/revdep/failures.md -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /scripts/logo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/scripts/logo.R -------------------------------------------------------------------------------- /supernova.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/supernova.Rproj -------------------------------------------------------------------------------- /tests/figs/deps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/figs/deps.txt -------------------------------------------------------------------------------- /tests/figs/pairwise/bonferroni-one-variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/figs/pairwise/bonferroni-one-variable.svg -------------------------------------------------------------------------------- /tests/figs/pairwise/multiple-plots-raceethnic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/figs/pairwise/multiple-plots-raceethnic.svg -------------------------------------------------------------------------------- /tests/figs/pairwise/multiple-plots-sex-raceethnic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/figs/pairwise/multiple-plots-sex-raceethnic.svg -------------------------------------------------------------------------------- /tests/figs/pairwise/multiple-plots-sex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/figs/pairwise/multiple-plots-sex.svg -------------------------------------------------------------------------------- /tests/figs/pairwise/t-test-one-variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/figs/pairwise/t-test-one-variable.svg -------------------------------------------------------------------------------- /tests/figs/pairwise/tukey-one-variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/figs/pairwise/tukey-one-variable.svg -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/generate_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/_snaps/generate_models.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/listwise_delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/_snaps/listwise_delete.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/_snaps/number.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/pairwise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/_snaps/pairwise.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/pairwise/bonferroni-one-variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/_snaps/pairwise/bonferroni-one-variable.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/pairwise/multiple-plots-term-factor-am.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/_snaps/pairwise/multiple-plots-term-factor-am.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/pairwise/multiple-plots-term-factor-cyl-factor-am.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/_snaps/pairwise/multiple-plots-term-factor-cyl-factor-am.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/pairwise/multiple-plots-term-factor-cyl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/_snaps/pairwise/multiple-plots-term-factor-cyl.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/pairwise/t-test-one-variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/_snaps/pairwise/t-test-one-variable.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/pairwise/tukey-one-variable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/_snaps/pairwise/tukey-one-variable.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/supernova.lmerMod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/_snaps/supernova.lmerMod.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/supernova.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/_snaps/supernova.md -------------------------------------------------------------------------------- /tests/testthat/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/setup.R -------------------------------------------------------------------------------- /tests/testthat/test-equation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/test-equation.R -------------------------------------------------------------------------------- /tests/testthat/test-generate_models.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/test-generate_models.R -------------------------------------------------------------------------------- /tests/testthat/test-listwise_delete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/test-listwise_delete.R -------------------------------------------------------------------------------- /tests/testthat/test-number.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/test-number.R -------------------------------------------------------------------------------- /tests/testthat/test-pairwise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/test-pairwise.R -------------------------------------------------------------------------------- /tests/testthat/test-supernova.lmerMod.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/test-supernova.lmerMod.R -------------------------------------------------------------------------------- /tests/testthat/test-supernova.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/test-supernova.r -------------------------------------------------------------------------------- /tests/testthat/test-utils-formula.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/test-utils-formula.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /tests/testthat/test-variables.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLATALL/supernova/HEAD/tests/testthat/test-variables.R --------------------------------------------------------------------------------