├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── rhub.yaml ├── .gitignore ├── CRAN-RELEASE ├── DESCRIPTION ├── HLMdiag.Rproj ├── NAMESPACE ├── NEWS.md ├── R ├── .Rapp.history ├── HLMdiag-defunct.R ├── HLMdiag-deprecated.R ├── HLMdiag-package.R ├── LSresids.R ├── adjust_formula_lmList.R ├── ahd.R ├── autism.R ├── case_delete.R ├── diagnostic_functions.R ├── group_level_residual_functions.R ├── help.R ├── hlm_augment.R ├── hlm_influence.R ├── hlm_resid.R ├── identification.R ├── influence_functions.R ├── plot_functions.R ├── pull_resid.R ├── radon.R ├── residual_functions.R ├── rotate_ranefs.R └── utility_functions.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── data ├── ahd.RData ├── autism.RData ├── radon.RData └── wages.RData ├── docs ├── 404.html ├── articles │ ├── hlm_resid.html │ ├── hlm_resid_files │ │ └── figure-html │ │ │ ├── unnamed-chunk-17-1.png │ │ │ ├── unnamed-chunk-18-1.png │ │ │ ├── unnamed-chunk-19-1.png │ │ │ └── unnamed-chunk-20-1.png │ ├── index.html │ ├── influence_diagnostics.html │ └── influence_diagnostics_files │ │ └── figure-html │ │ ├── unnamed-chunk-13-1.png │ │ ├── unnamed-chunk-16-1.png │ │ ├── unnamed-chunk-18-1.png │ │ ├── unnamed-chunk-20-1.png │ │ ├── unnamed-chunk-40-1.png │ │ ├── unnamed-chunk-43-1.png │ │ └── unnamed-chunk-8-1.png ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── HLMdiag.html │ ├── HLMresid.mer.html │ ├── LSresids.mer.html │ ├── adjust_lmList.formula.html │ ├── ahd.html │ ├── autism.html │ ├── case_delete.mer.html │ ├── compare_eb_ls-1.png │ ├── compare_eb_ls-2.png │ ├── compare_eb_ls.html │ ├── cooks.distance.html │ ├── covratio.html │ ├── diagnostics.html │ ├── dotplot_diag-1.png │ ├── dotplot_diag-2.png │ ├── dotplot_diag-3.png │ ├── dotplot_diag-4.png │ ├── dotplot_diag.html │ ├── extract_design.html │ ├── ggplot_qqnorm.html │ ├── group_qqnorm.html │ ├── hlm_augment.lmerMod.html │ ├── hlm_influence.lmerMod.html │ ├── hlm_resid.lmerMod.html │ ├── index.html │ ├── leverage.mer.html │ ├── pull_resid.lmerMod.html │ ├── radon.html │ ├── rotate_ranef.mer.html │ ├── rvc.mer.html │ ├── varcomp.mer.html │ └── wages.html ├── inst ├── CITATION └── image │ └── HLMdiag_hex.png ├── man ├── HLMdiag-defunct.Rd ├── HLMdiag-deprecated.Rd ├── HLMdiag.Rd ├── LSresids.mer.Rd ├── adjust_lmList.formula.Rd ├── ahd.Rd ├── autism.Rd ├── case_delete.mer.Rd ├── compare_eb_ls.Rd ├── cooks.distance.Rd ├── covratio.Rd ├── dotplot_diag.Rd ├── extract_design.Rd ├── figures │ └── logo.png ├── hlm_augment.Rd ├── hlm_influence.Rd ├── hlm_resid.Rd ├── leverage.mer.Rd ├── pull_resid.lmerMod.Rd ├── radon.Rd ├── resid_conditional.Rd ├── resid_marginal.Rd ├── resid_ranef.Rd ├── rotate_ranef.mer.Rd ├── rvc.mer.Rd ├── varcomp.mer.Rd └── wages.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── email.yml ├── failures.md └── problems.md ├── src ├── .gitignore ├── HLMdiag.dll ├── HLMdiag_init.c ├── Makevars ├── Makevars.win ├── cooksd_obs.cpp ├── cooksd_subset.cpp ├── covratio.cpp ├── covtrace.cpp ├── linear_algebra_fnc.cpp └── mdffits_subset.cpp ├── tests ├── testthat.R └── testthat │ ├── test-case_delete.R │ ├── test-hlm_augment.R │ ├── test-hlm_influence.R │ ├── test-hlm_resid.R │ ├── test-influence_functions.R │ └── test-pull_resid.R └── vignettes ├── .gitignore ├── hlm_resid.Rmd ├── influence_diagnostics.Rmd └── jss_update.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /HLMdiag.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/HLMdiag.Rproj -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/.Rapp.history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /R/HLMdiag-defunct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/HLMdiag-defunct.R -------------------------------------------------------------------------------- /R/HLMdiag-deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/HLMdiag-deprecated.R -------------------------------------------------------------------------------- /R/HLMdiag-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/HLMdiag-package.R -------------------------------------------------------------------------------- /R/LSresids.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/LSresids.R -------------------------------------------------------------------------------- /R/adjust_formula_lmList.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/adjust_formula_lmList.R -------------------------------------------------------------------------------- /R/ahd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/ahd.R -------------------------------------------------------------------------------- /R/autism.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/autism.R -------------------------------------------------------------------------------- /R/case_delete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/case_delete.R -------------------------------------------------------------------------------- /R/diagnostic_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/diagnostic_functions.R -------------------------------------------------------------------------------- /R/group_level_residual_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/group_level_residual_functions.R -------------------------------------------------------------------------------- /R/help.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/help.R -------------------------------------------------------------------------------- /R/hlm_augment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/hlm_augment.R -------------------------------------------------------------------------------- /R/hlm_influence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/hlm_influence.R -------------------------------------------------------------------------------- /R/hlm_resid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/hlm_resid.R -------------------------------------------------------------------------------- /R/identification.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/identification.R -------------------------------------------------------------------------------- /R/influence_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/influence_functions.R -------------------------------------------------------------------------------- /R/plot_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/plot_functions.R -------------------------------------------------------------------------------- /R/pull_resid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/pull_resid.R -------------------------------------------------------------------------------- /R/radon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/radon.R -------------------------------------------------------------------------------- /R/residual_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/residual_functions.R -------------------------------------------------------------------------------- /R/rotate_ranefs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/rotate_ranefs.R -------------------------------------------------------------------------------- /R/utility_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/R/utility_functions.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/ahd.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/data/ahd.RData -------------------------------------------------------------------------------- /data/autism.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/data/autism.RData -------------------------------------------------------------------------------- /data/radon.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/data/radon.RData -------------------------------------------------------------------------------- /data/wages.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/data/wages.RData -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/articles/hlm_resid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/hlm_resid.html -------------------------------------------------------------------------------- /docs/articles/hlm_resid_files/figure-html/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/hlm_resid_files/figure-html/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /docs/articles/hlm_resid_files/figure-html/unnamed-chunk-18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/hlm_resid_files/figure-html/unnamed-chunk-18-1.png -------------------------------------------------------------------------------- /docs/articles/hlm_resid_files/figure-html/unnamed-chunk-19-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/hlm_resid_files/figure-html/unnamed-chunk-19-1.png -------------------------------------------------------------------------------- /docs/articles/hlm_resid_files/figure-html/unnamed-chunk-20-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/hlm_resid_files/figure-html/unnamed-chunk-20-1.png -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/influence_diagnostics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/influence_diagnostics.html -------------------------------------------------------------------------------- /docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-18-1.png -------------------------------------------------------------------------------- /docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-20-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-20-1.png -------------------------------------------------------------------------------- /docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-40-1.png -------------------------------------------------------------------------------- /docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-43-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-43-1.png -------------------------------------------------------------------------------- /docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/articles/influence_diagnostics_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/HLMdiag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/HLMdiag.html -------------------------------------------------------------------------------- /docs/reference/HLMresid.mer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/HLMresid.mer.html -------------------------------------------------------------------------------- /docs/reference/LSresids.mer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/LSresids.mer.html -------------------------------------------------------------------------------- /docs/reference/adjust_lmList.formula.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/adjust_lmList.formula.html -------------------------------------------------------------------------------- /docs/reference/ahd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/ahd.html -------------------------------------------------------------------------------- /docs/reference/autism.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/autism.html -------------------------------------------------------------------------------- /docs/reference/case_delete.mer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/case_delete.mer.html -------------------------------------------------------------------------------- /docs/reference/compare_eb_ls-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/compare_eb_ls-1.png -------------------------------------------------------------------------------- /docs/reference/compare_eb_ls-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/compare_eb_ls-2.png -------------------------------------------------------------------------------- /docs/reference/compare_eb_ls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/compare_eb_ls.html -------------------------------------------------------------------------------- /docs/reference/cooks.distance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/cooks.distance.html -------------------------------------------------------------------------------- /docs/reference/covratio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/covratio.html -------------------------------------------------------------------------------- /docs/reference/diagnostics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/diagnostics.html -------------------------------------------------------------------------------- /docs/reference/dotplot_diag-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/dotplot_diag-1.png -------------------------------------------------------------------------------- /docs/reference/dotplot_diag-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/dotplot_diag-2.png -------------------------------------------------------------------------------- /docs/reference/dotplot_diag-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/dotplot_diag-3.png -------------------------------------------------------------------------------- /docs/reference/dotplot_diag-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/dotplot_diag-4.png -------------------------------------------------------------------------------- /docs/reference/dotplot_diag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/dotplot_diag.html -------------------------------------------------------------------------------- /docs/reference/extract_design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/extract_design.html -------------------------------------------------------------------------------- /docs/reference/ggplot_qqnorm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/ggplot_qqnorm.html -------------------------------------------------------------------------------- /docs/reference/group_qqnorm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/group_qqnorm.html -------------------------------------------------------------------------------- /docs/reference/hlm_augment.lmerMod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/hlm_augment.lmerMod.html -------------------------------------------------------------------------------- /docs/reference/hlm_influence.lmerMod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/hlm_influence.lmerMod.html -------------------------------------------------------------------------------- /docs/reference/hlm_resid.lmerMod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/hlm_resid.lmerMod.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/leverage.mer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/leverage.mer.html -------------------------------------------------------------------------------- /docs/reference/pull_resid.lmerMod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/pull_resid.lmerMod.html -------------------------------------------------------------------------------- /docs/reference/radon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/radon.html -------------------------------------------------------------------------------- /docs/reference/rotate_ranef.mer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/rotate_ranef.mer.html -------------------------------------------------------------------------------- /docs/reference/rvc.mer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/rvc.mer.html -------------------------------------------------------------------------------- /docs/reference/varcomp.mer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/varcomp.mer.html -------------------------------------------------------------------------------- /docs/reference/wages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/docs/reference/wages.html -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/image/HLMdiag_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/inst/image/HLMdiag_hex.png -------------------------------------------------------------------------------- /man/HLMdiag-defunct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/HLMdiag-defunct.Rd -------------------------------------------------------------------------------- /man/HLMdiag-deprecated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/HLMdiag-deprecated.Rd -------------------------------------------------------------------------------- /man/HLMdiag.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/HLMdiag.Rd -------------------------------------------------------------------------------- /man/LSresids.mer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/LSresids.mer.Rd -------------------------------------------------------------------------------- /man/adjust_lmList.formula.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/adjust_lmList.formula.Rd -------------------------------------------------------------------------------- /man/ahd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/ahd.Rd -------------------------------------------------------------------------------- /man/autism.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/autism.Rd -------------------------------------------------------------------------------- /man/case_delete.mer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/case_delete.mer.Rd -------------------------------------------------------------------------------- /man/compare_eb_ls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/compare_eb_ls.Rd -------------------------------------------------------------------------------- /man/cooks.distance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/cooks.distance.Rd -------------------------------------------------------------------------------- /man/covratio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/covratio.Rd -------------------------------------------------------------------------------- /man/dotplot_diag.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/dotplot_diag.Rd -------------------------------------------------------------------------------- /man/extract_design.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/extract_design.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/hlm_augment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/hlm_augment.Rd -------------------------------------------------------------------------------- /man/hlm_influence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/hlm_influence.Rd -------------------------------------------------------------------------------- /man/hlm_resid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/hlm_resid.Rd -------------------------------------------------------------------------------- /man/leverage.mer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/leverage.mer.Rd -------------------------------------------------------------------------------- /man/pull_resid.lmerMod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/pull_resid.lmerMod.Rd -------------------------------------------------------------------------------- /man/radon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/radon.Rd -------------------------------------------------------------------------------- /man/resid_conditional.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/resid_conditional.Rd -------------------------------------------------------------------------------- /man/resid_marginal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/resid_marginal.Rd -------------------------------------------------------------------------------- /man/resid_ranef.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/resid_ranef.Rd -------------------------------------------------------------------------------- /man/rotate_ranef.mer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/rotate_ranef.mer.Rd -------------------------------------------------------------------------------- /man/rvc.mer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/rvc.mer.Rd -------------------------------------------------------------------------------- /man/varcomp.mer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/varcomp.mer.Rd -------------------------------------------------------------------------------- /man/wages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/man/wages.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/email.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/revdep/email.yml -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/HLMdiag.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/src/HLMdiag.dll -------------------------------------------------------------------------------- /src/HLMdiag_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/src/HLMdiag_init.c -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/cooksd_obs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/src/cooksd_obs.cpp -------------------------------------------------------------------------------- /src/cooksd_subset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/src/cooksd_subset.cpp -------------------------------------------------------------------------------- /src/covratio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/src/covratio.cpp -------------------------------------------------------------------------------- /src/covtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/src/covtrace.cpp -------------------------------------------------------------------------------- /src/linear_algebra_fnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/src/linear_algebra_fnc.cpp -------------------------------------------------------------------------------- /src/mdffits_subset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/src/mdffits_subset.cpp -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-case_delete.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/tests/testthat/test-case_delete.R -------------------------------------------------------------------------------- /tests/testthat/test-hlm_augment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/tests/testthat/test-hlm_augment.R -------------------------------------------------------------------------------- /tests/testthat/test-hlm_influence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/tests/testthat/test-hlm_influence.R -------------------------------------------------------------------------------- /tests/testthat/test-hlm_resid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/tests/testthat/test-hlm_resid.R -------------------------------------------------------------------------------- /tests/testthat/test-influence_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/tests/testthat/test-influence_functions.R -------------------------------------------------------------------------------- /tests/testthat/test-pull_resid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/tests/testthat/test-pull_resid.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/hlm_resid.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/vignettes/hlm_resid.Rmd -------------------------------------------------------------------------------- /vignettes/influence_diagnostics.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/vignettes/influence_diagnostics.Rmd -------------------------------------------------------------------------------- /vignettes/jss_update.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aloy/HLMdiag/HEAD/vignettes/jss_update.Rmd --------------------------------------------------------------------------------