├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── data_penguins.R ├── helper_checks.R ├── helper_glm_actual.R ├── helper_label.R ├── helper_plotly_label.R ├── helper_plotly_title.R ├── helper_resid.R ├── plot_auxboxplot.R ├── plot_auxhist.R ├── plot_auxindex.R ├── plot_auxqq.R ├── plot_auxresid.R ├── plot_boxplot.R ├── plot_constlev.R ├── plot_cookd.R ├── plot_hist.R ├── plot_index.R ├── plot_lev.R ├── plot_ls.R ├── plot_qq.R ├── plot_resid.R ├── plot_yvp.R ├── resid_auxpanel.R ├── resid_calibrate.R ├── resid_compare.R ├── resid_interact.R ├── resid_panel.R └── resid_xpanel.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── data └── penguins.rda ├── docs ├── 404.html ├── LICENSE-text.html ├── 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 ├── articles │ ├── index.html │ ├── introduction.html │ └── introduction_files │ │ ├── crosstalk-1.1.1 │ │ ├── css │ │ │ └── crosstalk.css │ │ └── js │ │ │ ├── crosstalk.js │ │ │ ├── crosstalk.js.map │ │ │ ├── crosstalk.min.js │ │ │ └── crosstalk.min.js.map │ │ ├── figure-html │ │ ├── unnamed-chunk-11-1.png │ │ ├── unnamed-chunk-12-1.png │ │ ├── unnamed-chunk-14-1.png │ │ ├── unnamed-chunk-17-1.png │ │ ├── unnamed-chunk-4-1.png │ │ ├── unnamed-chunk-5-1.png │ │ ├── unnamed-chunk-8-1.png │ │ └── unnamed-chunk-9-1.png │ │ ├── htmlwidgets-1.5.3 │ │ └── htmlwidgets.js │ │ ├── jquery-3.5.1 │ │ ├── jquery-AUTHORS.txt │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ │ ├── plotly-binding-4.9.3 │ │ └── plotly.js │ │ ├── plotly-htmlwidgets-css-1.57.1 │ │ └── plotly-htmlwidgets.css │ │ ├── plotly-main-1.57.1 │ │ └── plotly-latest.min.js │ │ └── typedarray-0.1 │ │ └── typedarray.min.js ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── link.svg ├── logo.png ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── Rplot002.png │ ├── Rplot003.png │ ├── Rplot004.png │ ├── figures │ │ ├── README │ │ │ ├── unnamed-chunk-4-1.png │ │ │ ├── unnamed-chunk-4-2.png │ │ │ ├── unnamed-chunk-4-3.png │ │ │ ├── unnamed-chunk-6-1.png │ │ │ ├── unnamed-chunk-6-2.png │ │ │ ├── unnamed-chunk-7-1.png │ │ │ └── unnamed-chunk-8-1.png │ │ ├── interact.gif │ │ ├── logo.png │ │ ├── readme-unnamed-chunk-4-1.png │ │ ├── readme-unnamed-chunk-4-2.png │ │ ├── readme-unnamed-chunk-4-3.png │ │ ├── readme-unnamed-chunk-6-1.png │ │ ├── readme-unnamed-chunk-6-2.png │ │ ├── readme-unnamed-chunk-7-1.png │ │ ├── readme-unnamed-chunk-8-1.png │ │ └── static │ │ │ ├── interact.gif │ │ │ └── logo.png │ ├── index.html │ ├── libs │ │ ├── crosstalk-1.1.1 │ │ │ ├── css │ │ │ │ └── crosstalk.css │ │ │ └── js │ │ │ │ ├── crosstalk.js │ │ │ │ ├── crosstalk.js.map │ │ │ │ ├── crosstalk.min.js │ │ │ │ └── crosstalk.min.js.map │ │ ├── htmlwidgets-1.5.3 │ │ │ └── htmlwidgets.js │ │ ├── jquery-3.5.1 │ │ │ ├── jquery-AUTHORS.txt │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ ├── plotly-binding-4.9.3 │ │ │ └── plotly.js │ │ ├── plotly-htmlwidgets-css-1.57.1 │ │ │ └── plotly-htmlwidgets.css │ │ ├── plotly-main-1.57.1 │ │ │ └── plotly-latest.min.js │ │ └── typedarray-0.1 │ │ │ └── typedarray.min.js │ ├── penguins.html │ ├── resid_auxpanel-1.png │ ├── resid_auxpanel.html │ ├── resid_compare-1.png │ ├── resid_compare-2.png │ ├── resid_compare.html │ ├── resid_interact.html │ ├── resid_panel-1.png │ ├── resid_panel-2.png │ ├── resid_panel-3.png │ ├── resid_panel-4.png │ ├── resid_panel.html │ ├── resid_xpanel-1.png │ ├── resid_xpanel-2.png │ └── resid_xpanel.html └── sitemap.xml ├── inst ├── cleaning_penguins_data.R ├── figures │ ├── interact.gif │ ├── logo.png │ ├── readme-unnamed-chunk-4-1.png │ ├── readme-unnamed-chunk-4-2.png │ ├── readme-unnamed-chunk-4-3.png │ ├── readme-unnamed-chunk-6-1.png │ ├── readme-unnamed-chunk-6-2.png │ ├── readme-unnamed-chunk-7-1.png │ └── readme-unnamed-chunk-8-1.png ├── ideas-for-future-work.md ├── penguins.txt ├── residuals.Rmd └── sticker_code.R ├── man ├── penguins.Rd ├── resid_auxpanel.Rd ├── resid_calibrate.Rd ├── resid_compare.Rd ├── resid_interact.Rd ├── resid_panel.Rd └── resid_xpanel.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 ├── tests ├── testthat.R └── testthat │ ├── _snaps │ └── resid_panel │ │ ├── formatting-options-all-nrow-1.svg │ │ ├── formatting-options-all-nrow-3.svg │ │ ├── glm-binomial-plots-all.svg │ │ ├── glm-binomial-type-deviance.svg │ │ ├── glm-binomial-type-pearson.svg │ │ ├── glm-binomial-type-response.svg │ │ ├── glm-binomial-type-stand-deviance.svg │ │ ├── glm-binomial-type-stand-pearson.svg │ │ ├── glmer-binomial-plots-all.svg │ │ ├── glmer-binomial-type-deviance.svg │ │ ├── glmer-binomial-type-pearson.svg │ │ ├── glmer-binomial-type-response.svg │ │ ├── glmer-poisson-plots-all.svg │ │ ├── glmer-poisson-type-deviance.svg │ │ ├── glmer-poisson-type-pearson.svg │ │ ├── glmer-poisson-type-response.svg │ │ ├── lme-plots-all.svg │ │ ├── lme-type-pearson.svg │ │ ├── lme-type-response.svg │ │ ├── lmer-plots-all.svg │ │ ├── lmer-type-pearson.svg │ │ ├── lmer-type-response.svg │ │ ├── lmertest-plots-all.svg │ │ ├── panel-options-no-plots-specified.svg │ │ ├── panel-options-plots-all.svg │ │ ├── panel-options-plots-c-boxplot-cookd.svg │ │ ├── panel-options-plots-default-pearson.svg │ │ ├── panel-options-plots-r.svg │ │ └── panel-options-plots-sas.svg │ └── test-resid_panel.R └── vignettes └── introduction.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Katherine J Goode 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/data_penguins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/data_penguins.R -------------------------------------------------------------------------------- /R/helper_checks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/helper_checks.R -------------------------------------------------------------------------------- /R/helper_glm_actual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/helper_glm_actual.R -------------------------------------------------------------------------------- /R/helper_label.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/helper_label.R -------------------------------------------------------------------------------- /R/helper_plotly_label.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/helper_plotly_label.R -------------------------------------------------------------------------------- /R/helper_plotly_title.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/helper_plotly_title.R -------------------------------------------------------------------------------- /R/helper_resid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/helper_resid.R -------------------------------------------------------------------------------- /R/plot_auxboxplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_auxboxplot.R -------------------------------------------------------------------------------- /R/plot_auxhist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_auxhist.R -------------------------------------------------------------------------------- /R/plot_auxindex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_auxindex.R -------------------------------------------------------------------------------- /R/plot_auxqq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_auxqq.R -------------------------------------------------------------------------------- /R/plot_auxresid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_auxresid.R -------------------------------------------------------------------------------- /R/plot_boxplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_boxplot.R -------------------------------------------------------------------------------- /R/plot_constlev.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_constlev.R -------------------------------------------------------------------------------- /R/plot_cookd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_cookd.R -------------------------------------------------------------------------------- /R/plot_hist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_hist.R -------------------------------------------------------------------------------- /R/plot_index.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_index.R -------------------------------------------------------------------------------- /R/plot_lev.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_lev.R -------------------------------------------------------------------------------- /R/plot_ls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_ls.R -------------------------------------------------------------------------------- /R/plot_qq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_qq.R -------------------------------------------------------------------------------- /R/plot_resid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_resid.R -------------------------------------------------------------------------------- /R/plot_yvp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/plot_yvp.R -------------------------------------------------------------------------------- /R/resid_auxpanel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/resid_auxpanel.R -------------------------------------------------------------------------------- /R/resid_calibrate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/resid_calibrate.R -------------------------------------------------------------------------------- /R/resid_compare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/resid_compare.R -------------------------------------------------------------------------------- /R/resid_interact.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/resid_interact.R -------------------------------------------------------------------------------- /R/resid_panel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/resid_panel.R -------------------------------------------------------------------------------- /R/resid_xpanel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/R/resid_xpanel.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/penguins.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/data/penguins.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction.html -------------------------------------------------------------------------------- /docs/articles/introduction_files/crosstalk-1.1.1/css/crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/crosstalk-1.1.1/css/crosstalk.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/crosstalk-1.1.1/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/crosstalk-1.1.1/js/crosstalk.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/crosstalk-1.1.1/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/crosstalk-1.1.1/js/crosstalk.js.map -------------------------------------------------------------------------------- /docs/articles/introduction_files/crosstalk-1.1.1/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/crosstalk-1.1.1/js/crosstalk.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/crosstalk-1.1.1/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/crosstalk-1.1.1/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /docs/articles/introduction_files/figure-html/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/figure-html/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/figure-html/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/figure-html/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/figure-html/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/figure-html/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/figure-html/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/figure-html/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_files/htmlwidgets-1.5.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/htmlwidgets-1.5.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/jquery-3.5.1/jquery-AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/jquery-3.5.1/jquery-AUTHORS.txt -------------------------------------------------------------------------------- /docs/articles/introduction_files/jquery-3.5.1/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/jquery-3.5.1/jquery.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/jquery-3.5.1/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/jquery-3.5.1/jquery.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/jquery-3.5.1/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/jquery-3.5.1/jquery.min.map -------------------------------------------------------------------------------- /docs/articles/introduction_files/plotly-binding-4.9.3/plotly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/plotly-binding-4.9.3/plotly.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/plotly-htmlwidgets-css-1.57.1/plotly-htmlwidgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/plotly-htmlwidgets-css-1.57.1/plotly-htmlwidgets.css -------------------------------------------------------------------------------- /docs/articles/introduction_files/plotly-main-1.57.1/plotly-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/plotly-main-1.57.1/plotly-latest.min.js -------------------------------------------------------------------------------- /docs/articles/introduction_files/typedarray-0.1/typedarray.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/articles/introduction_files/typedarray-0.1/typedarray.min.js -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/Rplot002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/Rplot002.png -------------------------------------------------------------------------------- /docs/reference/Rplot003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/Rplot003.png -------------------------------------------------------------------------------- /docs/reference/Rplot004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/Rplot004.png -------------------------------------------------------------------------------- /docs/reference/figures/README/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/README/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README/unnamed-chunk-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/README/unnamed-chunk-4-2.png -------------------------------------------------------------------------------- /docs/reference/figures/README/unnamed-chunk-4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/README/unnamed-chunk-4-3.png -------------------------------------------------------------------------------- /docs/reference/figures/README/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/README/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README/unnamed-chunk-6-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/README/unnamed-chunk-6-2.png -------------------------------------------------------------------------------- /docs/reference/figures/README/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/README/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/README/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/reference/figures/interact.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/interact.gif -------------------------------------------------------------------------------- /docs/reference/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/logo.png -------------------------------------------------------------------------------- /docs/reference/figures/readme-unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/readme-unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/reference/figures/readme-unnamed-chunk-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/readme-unnamed-chunk-4-2.png -------------------------------------------------------------------------------- /docs/reference/figures/readme-unnamed-chunk-4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/readme-unnamed-chunk-4-3.png -------------------------------------------------------------------------------- /docs/reference/figures/readme-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/readme-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/reference/figures/readme-unnamed-chunk-6-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/readme-unnamed-chunk-6-2.png -------------------------------------------------------------------------------- /docs/reference/figures/readme-unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/readme-unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/reference/figures/readme-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/readme-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/reference/figures/static/interact.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/static/interact.gif -------------------------------------------------------------------------------- /docs/reference/figures/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/figures/static/logo.png -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/libs/crosstalk-1.1.1/css/crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/crosstalk-1.1.1/css/crosstalk.css -------------------------------------------------------------------------------- /docs/reference/libs/crosstalk-1.1.1/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/crosstalk-1.1.1/js/crosstalk.js -------------------------------------------------------------------------------- /docs/reference/libs/crosstalk-1.1.1/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/crosstalk-1.1.1/js/crosstalk.js.map -------------------------------------------------------------------------------- /docs/reference/libs/crosstalk-1.1.1/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/crosstalk-1.1.1/js/crosstalk.min.js -------------------------------------------------------------------------------- /docs/reference/libs/crosstalk-1.1.1/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/crosstalk-1.1.1/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /docs/reference/libs/htmlwidgets-1.5.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/htmlwidgets-1.5.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/reference/libs/jquery-3.5.1/jquery-AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/jquery-3.5.1/jquery-AUTHORS.txt -------------------------------------------------------------------------------- /docs/reference/libs/jquery-3.5.1/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/jquery-3.5.1/jquery.js -------------------------------------------------------------------------------- /docs/reference/libs/jquery-3.5.1/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/jquery-3.5.1/jquery.min.js -------------------------------------------------------------------------------- /docs/reference/libs/jquery-3.5.1/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/jquery-3.5.1/jquery.min.map -------------------------------------------------------------------------------- /docs/reference/libs/plotly-binding-4.9.3/plotly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/plotly-binding-4.9.3/plotly.js -------------------------------------------------------------------------------- /docs/reference/libs/plotly-htmlwidgets-css-1.57.1/plotly-htmlwidgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/plotly-htmlwidgets-css-1.57.1/plotly-htmlwidgets.css -------------------------------------------------------------------------------- /docs/reference/libs/plotly-main-1.57.1/plotly-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/plotly-main-1.57.1/plotly-latest.min.js -------------------------------------------------------------------------------- /docs/reference/libs/typedarray-0.1/typedarray.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/libs/typedarray-0.1/typedarray.min.js -------------------------------------------------------------------------------- /docs/reference/penguins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/penguins.html -------------------------------------------------------------------------------- /docs/reference/resid_auxpanel-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_auxpanel-1.png -------------------------------------------------------------------------------- /docs/reference/resid_auxpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_auxpanel.html -------------------------------------------------------------------------------- /docs/reference/resid_compare-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_compare-1.png -------------------------------------------------------------------------------- /docs/reference/resid_compare-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_compare-2.png -------------------------------------------------------------------------------- /docs/reference/resid_compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_compare.html -------------------------------------------------------------------------------- /docs/reference/resid_interact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_interact.html -------------------------------------------------------------------------------- /docs/reference/resid_panel-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_panel-1.png -------------------------------------------------------------------------------- /docs/reference/resid_panel-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_panel-2.png -------------------------------------------------------------------------------- /docs/reference/resid_panel-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_panel-3.png -------------------------------------------------------------------------------- /docs/reference/resid_panel-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_panel-4.png -------------------------------------------------------------------------------- /docs/reference/resid_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_panel.html -------------------------------------------------------------------------------- /docs/reference/resid_xpanel-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_xpanel-1.png -------------------------------------------------------------------------------- /docs/reference/resid_xpanel-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_xpanel-2.png -------------------------------------------------------------------------------- /docs/reference/resid_xpanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/reference/resid_xpanel.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/cleaning_penguins_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/cleaning_penguins_data.R -------------------------------------------------------------------------------- /inst/figures/interact.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/figures/interact.gif -------------------------------------------------------------------------------- /inst/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/figures/logo.png -------------------------------------------------------------------------------- /inst/figures/readme-unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/figures/readme-unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /inst/figures/readme-unnamed-chunk-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/figures/readme-unnamed-chunk-4-2.png -------------------------------------------------------------------------------- /inst/figures/readme-unnamed-chunk-4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/figures/readme-unnamed-chunk-4-3.png -------------------------------------------------------------------------------- /inst/figures/readme-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/figures/readme-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /inst/figures/readme-unnamed-chunk-6-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/figures/readme-unnamed-chunk-6-2.png -------------------------------------------------------------------------------- /inst/figures/readme-unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/figures/readme-unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /inst/figures/readme-unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/figures/readme-unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /inst/ideas-for-future-work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/ideas-for-future-work.md -------------------------------------------------------------------------------- /inst/penguins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/penguins.txt -------------------------------------------------------------------------------- /inst/residuals.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/residuals.Rmd -------------------------------------------------------------------------------- /inst/sticker_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/inst/sticker_code.R -------------------------------------------------------------------------------- /man/penguins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/man/penguins.Rd -------------------------------------------------------------------------------- /man/resid_auxpanel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/man/resid_auxpanel.Rd -------------------------------------------------------------------------------- /man/resid_calibrate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/man/resid_calibrate.Rd -------------------------------------------------------------------------------- /man/resid_compare.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/man/resid_compare.Rd -------------------------------------------------------------------------------- /man/resid_interact.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/man/resid_interact.Rd -------------------------------------------------------------------------------- /man/resid_panel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/man/resid_panel.Rd -------------------------------------------------------------------------------- /man/resid_xpanel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/man/resid_xpanel.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/formatting-options-all-nrow-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/formatting-options-all-nrow-1.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/formatting-options-all-nrow-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/formatting-options-all-nrow-3.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glm-binomial-plots-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glm-binomial-plots-all.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glm-binomial-type-deviance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glm-binomial-type-deviance.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glm-binomial-type-pearson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glm-binomial-type-pearson.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glm-binomial-type-response.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glm-binomial-type-response.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glm-binomial-type-stand-deviance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glm-binomial-type-stand-deviance.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glm-binomial-type-stand-pearson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glm-binomial-type-stand-pearson.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glmer-binomial-plots-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glmer-binomial-plots-all.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glmer-binomial-type-deviance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glmer-binomial-type-deviance.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glmer-binomial-type-pearson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glmer-binomial-type-pearson.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glmer-binomial-type-response.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glmer-binomial-type-response.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glmer-poisson-plots-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glmer-poisson-plots-all.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glmer-poisson-type-deviance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glmer-poisson-type-deviance.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glmer-poisson-type-pearson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glmer-poisson-type-pearson.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/glmer-poisson-type-response.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/glmer-poisson-type-response.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/lme-plots-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/lme-plots-all.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/lme-type-pearson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/lme-type-pearson.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/lme-type-response.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/lme-type-response.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/lmer-plots-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/lmer-plots-all.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/lmer-type-pearson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/lmer-type-pearson.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/lmer-type-response.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/lmer-type-response.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/lmertest-plots-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/lmertest-plots-all.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/panel-options-no-plots-specified.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/panel-options-no-plots-specified.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/panel-options-plots-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/panel-options-plots-all.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/panel-options-plots-c-boxplot-cookd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/panel-options-plots-c-boxplot-cookd.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/panel-options-plots-default-pearson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/panel-options-plots-default-pearson.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/panel-options-plots-r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/panel-options-plots-r.svg -------------------------------------------------------------------------------- /tests/testthat/_snaps/resid_panel/panel-options-plots-sas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/_snaps/resid_panel/panel-options-plots-sas.svg -------------------------------------------------------------------------------- /tests/testthat/test-resid_panel.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/tests/testthat/test-resid_panel.R -------------------------------------------------------------------------------- /vignettes/introduction.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goodekat/ggResidpanel/HEAD/vignettes/introduction.Rmd --------------------------------------------------------------------------------