├── .Rbuildignore ├── .github └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── .Rapp.history ├── data.r ├── distances.r ├── distmet.r ├── encryption.r ├── method-dist.r ├── method-model.r ├── method-permute.r ├── method-ts.r ├── opt_diff.r ├── power.r ├── protocols.r ├── pvalues.r ├── quick_plots.R ├── sample_size.r └── theme.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── data ├── aud.rda ├── electoral.rda ├── lakers.rdata ├── tips.rda ├── turk_results.rda └── wasps.rda ├── demo ├── 00Index └── lakers.r ├── docs ├── 404.html ├── articles │ ├── distances.html │ ├── distances_files │ │ └── figure-html │ │ │ ├── unnamed-chunk-10-1.png │ │ │ ├── unnamed-chunk-15-1.png │ │ │ └── unnamed-chunk-9-1.png │ ├── index.html │ ├── nullabor-distributions.html │ ├── nullabor-distributions_files │ │ └── figure-html │ │ │ ├── unnamed-chunk-10-1.png │ │ │ ├── unnamed-chunk-2-1.png │ │ │ ├── unnamed-chunk-3-1.png │ │ │ ├── unnamed-chunk-5-1.png │ │ │ ├── unnamed-chunk-6-1.png │ │ │ ├── unnamed-chunk-7-1.png │ │ │ ├── unnamed-chunk-8-1.png │ │ │ └── unnamed-chunk-9-1.png │ ├── nullabor-examples.html │ ├── nullabor-examples_files │ │ └── figure-html │ │ │ └── unnamed-chunk-6-1.png │ ├── nullabor-regression.html │ ├── nullabor-regression_files │ │ └── figure-html │ │ │ ├── unnamed-chunk-3-1.png │ │ │ ├── unnamed-chunk-4-1.png │ │ │ ├── unnamed-chunk-5-1.png │ │ │ ├── unnamed-chunk-6-1.png │ │ │ └── unnamed-chunk-7-1.png │ ├── nullabor.html │ └── nullabor_files │ │ └── figure-html │ │ ├── unnamed-chunk-3-1.png │ │ ├── unnamed-chunk-4-1.png │ │ └── unnamed-chunk-8-1.png ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── jquery.sticky-kit.min.js ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── Rplot002.png │ ├── add_true.html │ ├── aud.html │ ├── bin_dist.html │ ├── box_dist.html │ ├── calc_diff.html │ ├── calc_mean_dist.html │ ├── decrypt.html │ ├── distmet-2.png │ ├── distmet-3.png │ ├── distmet.html │ ├── distplot-1.png │ ├── distplot.html │ ├── electoral.html │ ├── figures │ │ └── nullabor_hex.png │ ├── find_plot_data.html │ ├── index.html │ ├── lal.html │ ├── lineup-1.png │ ├── lineup-2.png │ ├── lineup.html │ ├── lineup_histograms-1.png │ ├── lineup_histograms-2.png │ ├── lineup_histograms-3.png │ ├── lineup_histograms-4.png │ ├── lineup_histograms.html │ ├── lineup_qq-1.png │ ├── lineup_qq-2.png │ ├── lineup_qq-3.png │ ├── lineup_qq-4.png │ ├── lineup_qq.html │ ├── lineup_residuals-1.png │ ├── lineup_residuals-2.png │ ├── lineup_residuals-3.png │ ├── lineup_residuals-4.png │ ├── lineup_residuals-5.png │ ├── lineup_residuals.html │ ├── null_dist-1.png │ ├── null_dist-2.png │ ├── null_dist.html │ ├── null_gen.html │ ├── null_lm-1.png │ ├── null_lm.html │ ├── null_permute-1.png │ ├── null_permute.html │ ├── null_ts-1.png │ ├── null_ts.html │ ├── opt_bin_diff-1.png │ ├── opt_bin_diff.html │ ├── pvisual.html │ ├── reg_dist.html │ ├── resid_boot.html │ ├── resid_pboot.html │ ├── resid_perm.html │ ├── resid_rotate.html │ ├── resid_sigma.html │ ├── rorschach.html │ ├── sample_size-1.png │ ├── sample_size.html │ ├── sep_dist.html │ ├── theme_strip-1.png │ ├── theme_strip.html │ ├── tips.html │ ├── turk_results.html │ ├── uni_dist.html │ ├── visual_power.html │ └── wasps.html └── sitemap.xml ├── inst └── CITATION ├── man ├── add_true.Rd ├── aud.Rd ├── bin_dist.Rd ├── box_dist.Rd ├── calc_diff.Rd ├── calc_mean_dist.Rd ├── decrypt.Rd ├── distmet.Rd ├── distplot.Rd ├── electoral.Rd ├── figures │ └── nullabor_hex.png ├── find_plot_data.Rd ├── lal.Rd ├── lineup.Rd ├── lineup_histograms.Rd ├── lineup_qq.Rd ├── lineup_residuals.Rd ├── null_dist.Rd ├── null_gen.Rd ├── null_lm.Rd ├── null_permute.Rd ├── null_ts.Rd ├── opt_bin_diff.Rd ├── pvisual.Rd ├── reg_dist.Rd ├── resid_boot.Rd ├── resid_pboot.Rd ├── resid_perm.Rd ├── resid_rotate.Rd ├── resid_sigma.Rd ├── rorschach.Rd ├── sample_size.Rd ├── sep_dist.Rd ├── theme_strip.Rd ├── tips.Rd ├── turk_results.Rd ├── uni_dist.Rd ├── visual_power.Rd └── wasps.Rd ├── nullabor.Rproj └── vignettes ├── distances.Rmd ├── nullabor-distributions.Rmd ├── nullabor-examples.Rmd ├── nullabor-regression.Rmd └── nullabor.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/.Rapp.history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/.Rapp.history -------------------------------------------------------------------------------- /R/data.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/data.r -------------------------------------------------------------------------------- /R/distances.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/distances.r -------------------------------------------------------------------------------- /R/distmet.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/distmet.r -------------------------------------------------------------------------------- /R/encryption.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/encryption.r -------------------------------------------------------------------------------- /R/method-dist.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/method-dist.r -------------------------------------------------------------------------------- /R/method-model.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/method-model.r -------------------------------------------------------------------------------- /R/method-permute.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/method-permute.r -------------------------------------------------------------------------------- /R/method-ts.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/method-ts.r -------------------------------------------------------------------------------- /R/opt_diff.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/opt_diff.r -------------------------------------------------------------------------------- /R/power.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/power.r -------------------------------------------------------------------------------- /R/protocols.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/protocols.r -------------------------------------------------------------------------------- /R/pvalues.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/pvalues.r -------------------------------------------------------------------------------- /R/quick_plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/quick_plots.R -------------------------------------------------------------------------------- /R/sample_size.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/sample_size.r -------------------------------------------------------------------------------- /R/theme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/R/theme.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/aud.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/data/aud.rda -------------------------------------------------------------------------------- /data/electoral.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/data/electoral.rda -------------------------------------------------------------------------------- /data/lakers.rdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/data/lakers.rdata -------------------------------------------------------------------------------- /data/tips.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/data/tips.rda -------------------------------------------------------------------------------- /data/turk_results.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/data/turk_results.rda -------------------------------------------------------------------------------- /data/wasps.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/data/wasps.rda -------------------------------------------------------------------------------- /demo/00Index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/demo/00Index -------------------------------------------------------------------------------- /demo/lakers.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/demo/lakers.r -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/articles/distances.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/distances.html -------------------------------------------------------------------------------- /docs/articles/distances_files/figure-html/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/distances_files/figure-html/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /docs/articles/distances_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/distances_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /docs/articles/distances_files/figure-html/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/distances_files/figure-html/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/nullabor-distributions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-distributions.html -------------------------------------------------------------------------------- /docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-distributions_files/figure-html/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor-examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-examples.html -------------------------------------------------------------------------------- /docs/articles/nullabor-examples_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-examples_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor-regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-regression.html -------------------------------------------------------------------------------- /docs/articles/nullabor-regression_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-regression_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor-regression_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-regression_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor-regression_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-regression_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor-regression_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-regression_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor-regression_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor-regression_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor.html -------------------------------------------------------------------------------- /docs/articles/nullabor_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/articles/nullabor_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/articles/nullabor_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery.sticky-kit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/jquery.sticky-kit.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/Rplot002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/Rplot002.png -------------------------------------------------------------------------------- /docs/reference/add_true.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/add_true.html -------------------------------------------------------------------------------- /docs/reference/aud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/aud.html -------------------------------------------------------------------------------- /docs/reference/bin_dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/bin_dist.html -------------------------------------------------------------------------------- /docs/reference/box_dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/box_dist.html -------------------------------------------------------------------------------- /docs/reference/calc_diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/calc_diff.html -------------------------------------------------------------------------------- /docs/reference/calc_mean_dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/calc_mean_dist.html -------------------------------------------------------------------------------- /docs/reference/decrypt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/decrypt.html -------------------------------------------------------------------------------- /docs/reference/distmet-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/distmet-2.png -------------------------------------------------------------------------------- /docs/reference/distmet-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/distmet-3.png -------------------------------------------------------------------------------- /docs/reference/distmet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/distmet.html -------------------------------------------------------------------------------- /docs/reference/distplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/distplot-1.png -------------------------------------------------------------------------------- /docs/reference/distplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/distplot.html -------------------------------------------------------------------------------- /docs/reference/electoral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/electoral.html -------------------------------------------------------------------------------- /docs/reference/figures/nullabor_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/figures/nullabor_hex.png -------------------------------------------------------------------------------- /docs/reference/find_plot_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/find_plot_data.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/lal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lal.html -------------------------------------------------------------------------------- /docs/reference/lineup-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup-1.png -------------------------------------------------------------------------------- /docs/reference/lineup-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup-2.png -------------------------------------------------------------------------------- /docs/reference/lineup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup.html -------------------------------------------------------------------------------- /docs/reference/lineup_histograms-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_histograms-1.png -------------------------------------------------------------------------------- /docs/reference/lineup_histograms-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_histograms-2.png -------------------------------------------------------------------------------- /docs/reference/lineup_histograms-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_histograms-3.png -------------------------------------------------------------------------------- /docs/reference/lineup_histograms-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_histograms-4.png -------------------------------------------------------------------------------- /docs/reference/lineup_histograms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_histograms.html -------------------------------------------------------------------------------- /docs/reference/lineup_qq-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_qq-1.png -------------------------------------------------------------------------------- /docs/reference/lineup_qq-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_qq-2.png -------------------------------------------------------------------------------- /docs/reference/lineup_qq-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_qq-3.png -------------------------------------------------------------------------------- /docs/reference/lineup_qq-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_qq-4.png -------------------------------------------------------------------------------- /docs/reference/lineup_qq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_qq.html -------------------------------------------------------------------------------- /docs/reference/lineup_residuals-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_residuals-1.png -------------------------------------------------------------------------------- /docs/reference/lineup_residuals-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_residuals-2.png -------------------------------------------------------------------------------- /docs/reference/lineup_residuals-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_residuals-3.png -------------------------------------------------------------------------------- /docs/reference/lineup_residuals-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_residuals-4.png -------------------------------------------------------------------------------- /docs/reference/lineup_residuals-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_residuals-5.png -------------------------------------------------------------------------------- /docs/reference/lineup_residuals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/lineup_residuals.html -------------------------------------------------------------------------------- /docs/reference/null_dist-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/null_dist-1.png -------------------------------------------------------------------------------- /docs/reference/null_dist-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/null_dist-2.png -------------------------------------------------------------------------------- /docs/reference/null_dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/null_dist.html -------------------------------------------------------------------------------- /docs/reference/null_gen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/null_gen.html -------------------------------------------------------------------------------- /docs/reference/null_lm-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/null_lm-1.png -------------------------------------------------------------------------------- /docs/reference/null_lm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/null_lm.html -------------------------------------------------------------------------------- /docs/reference/null_permute-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/null_permute-1.png -------------------------------------------------------------------------------- /docs/reference/null_permute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/null_permute.html -------------------------------------------------------------------------------- /docs/reference/null_ts-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/null_ts-1.png -------------------------------------------------------------------------------- /docs/reference/null_ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/null_ts.html -------------------------------------------------------------------------------- /docs/reference/opt_bin_diff-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/opt_bin_diff-1.png -------------------------------------------------------------------------------- /docs/reference/opt_bin_diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/opt_bin_diff.html -------------------------------------------------------------------------------- /docs/reference/pvisual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/pvisual.html -------------------------------------------------------------------------------- /docs/reference/reg_dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/reg_dist.html -------------------------------------------------------------------------------- /docs/reference/resid_boot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/resid_boot.html -------------------------------------------------------------------------------- /docs/reference/resid_pboot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/resid_pboot.html -------------------------------------------------------------------------------- /docs/reference/resid_perm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/resid_perm.html -------------------------------------------------------------------------------- /docs/reference/resid_rotate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/resid_rotate.html -------------------------------------------------------------------------------- /docs/reference/resid_sigma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/resid_sigma.html -------------------------------------------------------------------------------- /docs/reference/rorschach.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/rorschach.html -------------------------------------------------------------------------------- /docs/reference/sample_size-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/sample_size-1.png -------------------------------------------------------------------------------- /docs/reference/sample_size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/sample_size.html -------------------------------------------------------------------------------- /docs/reference/sep_dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/sep_dist.html -------------------------------------------------------------------------------- /docs/reference/theme_strip-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/theme_strip-1.png -------------------------------------------------------------------------------- /docs/reference/theme_strip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/theme_strip.html -------------------------------------------------------------------------------- /docs/reference/tips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/tips.html -------------------------------------------------------------------------------- /docs/reference/turk_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/turk_results.html -------------------------------------------------------------------------------- /docs/reference/uni_dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/uni_dist.html -------------------------------------------------------------------------------- /docs/reference/visual_power.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/visual_power.html -------------------------------------------------------------------------------- /docs/reference/wasps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/reference/wasps.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/inst/CITATION -------------------------------------------------------------------------------- /man/add_true.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/add_true.Rd -------------------------------------------------------------------------------- /man/aud.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/aud.Rd -------------------------------------------------------------------------------- /man/bin_dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/bin_dist.Rd -------------------------------------------------------------------------------- /man/box_dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/box_dist.Rd -------------------------------------------------------------------------------- /man/calc_diff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/calc_diff.Rd -------------------------------------------------------------------------------- /man/calc_mean_dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/calc_mean_dist.Rd -------------------------------------------------------------------------------- /man/decrypt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/decrypt.Rd -------------------------------------------------------------------------------- /man/distmet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/distmet.Rd -------------------------------------------------------------------------------- /man/distplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/distplot.Rd -------------------------------------------------------------------------------- /man/electoral.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/electoral.Rd -------------------------------------------------------------------------------- /man/figures/nullabor_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/figures/nullabor_hex.png -------------------------------------------------------------------------------- /man/find_plot_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/find_plot_data.Rd -------------------------------------------------------------------------------- /man/lal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/lal.Rd -------------------------------------------------------------------------------- /man/lineup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/lineup.Rd -------------------------------------------------------------------------------- /man/lineup_histograms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/lineup_histograms.Rd -------------------------------------------------------------------------------- /man/lineup_qq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/lineup_qq.Rd -------------------------------------------------------------------------------- /man/lineup_residuals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/lineup_residuals.Rd -------------------------------------------------------------------------------- /man/null_dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/null_dist.Rd -------------------------------------------------------------------------------- /man/null_gen.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/null_gen.Rd -------------------------------------------------------------------------------- /man/null_lm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/null_lm.Rd -------------------------------------------------------------------------------- /man/null_permute.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/null_permute.Rd -------------------------------------------------------------------------------- /man/null_ts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/null_ts.Rd -------------------------------------------------------------------------------- /man/opt_bin_diff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/opt_bin_diff.Rd -------------------------------------------------------------------------------- /man/pvisual.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/pvisual.Rd -------------------------------------------------------------------------------- /man/reg_dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/reg_dist.Rd -------------------------------------------------------------------------------- /man/resid_boot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/resid_boot.Rd -------------------------------------------------------------------------------- /man/resid_pboot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/resid_pboot.Rd -------------------------------------------------------------------------------- /man/resid_perm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/resid_perm.Rd -------------------------------------------------------------------------------- /man/resid_rotate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/resid_rotate.Rd -------------------------------------------------------------------------------- /man/resid_sigma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/resid_sigma.Rd -------------------------------------------------------------------------------- /man/rorschach.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/rorschach.Rd -------------------------------------------------------------------------------- /man/sample_size.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/sample_size.Rd -------------------------------------------------------------------------------- /man/sep_dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/sep_dist.Rd -------------------------------------------------------------------------------- /man/theme_strip.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/theme_strip.Rd -------------------------------------------------------------------------------- /man/tips.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/tips.Rd -------------------------------------------------------------------------------- /man/turk_results.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/turk_results.Rd -------------------------------------------------------------------------------- /man/uni_dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/uni_dist.Rd -------------------------------------------------------------------------------- /man/visual_power.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/visual_power.Rd -------------------------------------------------------------------------------- /man/wasps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/man/wasps.Rd -------------------------------------------------------------------------------- /nullabor.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/nullabor.Rproj -------------------------------------------------------------------------------- /vignettes/distances.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/vignettes/distances.Rmd -------------------------------------------------------------------------------- /vignettes/nullabor-distributions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/vignettes/nullabor-distributions.Rmd -------------------------------------------------------------------------------- /vignettes/nullabor-examples.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/vignettes/nullabor-examples.Rmd -------------------------------------------------------------------------------- /vignettes/nullabor-regression.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/vignettes/nullabor-regression.Rmd -------------------------------------------------------------------------------- /vignettes/nullabor.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dicook/nullabor/HEAD/vignettes/nullabor.Rmd --------------------------------------------------------------------------------