├── .gitignore ├── README.md ├── Tests as linear models.Rproj ├── include ├── google_analytics_header.html ├── hideOutput.css ├── hideOutput.js ├── style.css └── twitter_card.html ├── index.Rmd ├── index.html ├── index_files ├── bootstrap-3.3.5 │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── cerulean.min.css │ │ ├── cosmo.min.css │ │ ├── darkly.min.css │ │ ├── flatly.min.css │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── OpenSansLight.ttf │ │ │ ├── OpenSansLightItalic.ttf │ │ │ ├── Raleway.ttf │ │ │ ├── RalewayBold.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── RobotoBold.ttf │ │ │ ├── RobotoLight.ttf │ │ │ ├── RobotoMedium.ttf │ │ │ ├── SourceSansPro.ttf │ │ │ ├── SourceSansProBold.ttf │ │ │ ├── SourceSansProItalic.ttf │ │ │ ├── SourceSansProLight.ttf │ │ │ └── Ubuntu.ttf │ │ ├── journal.min.css │ │ ├── lumen.min.css │ │ ├── paper.min.css │ │ ├── readable.min.css │ │ ├── sandstone.min.css │ │ ├── simplex.min.css │ │ ├── spacelab.min.css │ │ ├── united.min.css │ │ └── yeti.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ └── shim │ │ ├── html5shiv.min.js │ │ └── respond.min.js ├── crosstalk-1.0.0 │ ├── css │ │ └── crosstalk.css │ └── js │ │ ├── crosstalk.js │ │ ├── crosstalk.js.map │ │ ├── crosstalk.min.js │ │ └── crosstalk.min.js.map ├── datatables-binding-0.5 │ └── datatables.js ├── datatables-binding-0.6 │ └── datatables.js ├── datatables-css-0.0.0 │ └── datatables-crosstalk.css ├── dt-core-1.10.16 │ ├── css │ │ ├── jquery.dataTables.extra.css │ │ └── jquery.dataTables.min.css │ └── js │ │ └── jquery.dataTables.min.js ├── figure-html │ ├── unnamed-chunk-12-1.png │ ├── unnamed-chunk-13-1.png │ ├── unnamed-chunk-14-1.png │ ├── unnamed-chunk-19-1.png │ ├── unnamed-chunk-20-1.png │ ├── unnamed-chunk-21-1.png │ ├── unnamed-chunk-26-1.png │ ├── unnamed-chunk-27-1.png │ ├── unnamed-chunk-28-1.png │ ├── unnamed-chunk-36-1.png │ ├── unnamed-chunk-37-1.png │ ├── unnamed-chunk-38-1.png │ ├── unnamed-chunk-4-1.png │ ├── unnamed-chunk-47-1.png │ ├── unnamed-chunk-48-1.png │ ├── unnamed-chunk-49-1.png │ ├── unnamed-chunk-5-1.png │ ├── unnamed-chunk-55-1.png │ ├── unnamed-chunk-56-1.png │ ├── unnamed-chunk-57-1.png │ ├── unnamed-chunk-6-1.png │ ├── unnamed-chunk-70-1.png │ ├── unnamed-chunk-70-2.png │ ├── unnamed-chunk-70-3.png │ ├── unnamed-chunk-70-4.png │ ├── unnamed-chunk-70-5.png │ ├── unnamed-chunk-70-6.png │ ├── unnamed-chunk-71-1.png │ ├── unnamed-chunk-71-2.png │ ├── unnamed-chunk-71-3.png │ ├── unnamed-chunk-71-4.png │ ├── unnamed-chunk-71-5.png │ ├── unnamed-chunk-71-6.png │ ├── unnamed-chunk-72-1.png │ ├── unnamed-chunk-72-2.png │ ├── unnamed-chunk-72-3.png │ ├── unnamed-chunk-72-4.png │ ├── unnamed-chunk-72-5.png │ └── unnamed-chunk-72-6.png ├── highlightjs-9.12.0 │ ├── default.css │ ├── highlight.js │ └── textmate.css ├── htmlwidgets-1.3 │ └── htmlwidgets.js ├── jquery-1.12.4 │ ├── LICENSE.txt │ └── jquery.min.js ├── jqueryui-1.11.4 │ ├── README │ ├── images │ │ ├── ui-icons_444444_256x240.png │ │ ├── ui-icons_555555_256x240.png │ │ ├── ui-icons_777620_256x240.png │ │ ├── ui-icons_777777_256x240.png │ │ ├── ui-icons_cc0000_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── index.html │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ └── jquery-ui.theme.min.css ├── navigation-1.1 │ ├── codefolding.js │ ├── sourceembed.js │ └── tabsets.js └── tocify-1.9.1 │ ├── jquery.tocify.css │ └── jquery.tocify.js ├── linear_tests_cheat_sheet.odt ├── linear_tests_cheat_sheet.pdf ├── linear_tests_cheat_sheet.png ├── simulate_wilcoxon.html └── simulations ├── simulate_kruskall.Rmd ├── simulate_kruskall.html ├── simulate_kruskall_files ├── bootstrap-3.3.5 │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── cerulean.min.css │ │ ├── cosmo.min.css │ │ ├── darkly.min.css │ │ ├── flatly.min.css │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── OpenSansLight.ttf │ │ │ ├── OpenSansLightItalic.ttf │ │ │ ├── Raleway.ttf │ │ │ ├── RalewayBold.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── RobotoBold.ttf │ │ │ ├── RobotoLight.ttf │ │ │ ├── RobotoMedium.ttf │ │ │ ├── SourceSansPro.ttf │ │ │ ├── SourceSansProBold.ttf │ │ │ ├── SourceSansProItalic.ttf │ │ │ ├── SourceSansProLight.ttf │ │ │ └── Ubuntu.ttf │ │ ├── journal.min.css │ │ ├── lumen.min.css │ │ ├── paper.min.css │ │ ├── readable.min.css │ │ ├── sandstone.min.css │ │ ├── simplex.min.css │ │ ├── spacelab.min.css │ │ ├── united.min.css │ │ └── yeti.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ └── shim │ │ ├── html5shiv.min.js │ │ └── respond.min.js ├── figure-html │ └── unnamed-chunk-1-1.png ├── highlightjs-9.12.0 │ ├── default.css │ ├── highlight.js │ └── textmate.css ├── jquery-1.11.3 │ └── jquery.min.js ├── navigation-1.1 │ ├── codefolding.js │ ├── sourceembed.js │ └── tabsets.js └── pagedtable-1.1 │ ├── css │ └── pagedtable.css │ └── js │ └── pagedtable.js ├── simulate_mannwhitney.Rmd ├── simulate_mannwhitney.html ├── simulate_mannwhitney_files ├── bootstrap-3.3.5 │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── cerulean.min.css │ │ ├── cosmo.min.css │ │ ├── darkly.min.css │ │ ├── flatly.min.css │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── OpenSansLight.ttf │ │ │ ├── OpenSansLightItalic.ttf │ │ │ ├── Raleway.ttf │ │ │ ├── RalewayBold.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── RobotoBold.ttf │ │ │ ├── RobotoLight.ttf │ │ │ ├── RobotoMedium.ttf │ │ │ ├── SourceSansPro.ttf │ │ │ ├── SourceSansProBold.ttf │ │ │ ├── SourceSansProItalic.ttf │ │ │ ├── SourceSansProLight.ttf │ │ │ └── Ubuntu.ttf │ │ ├── journal.min.css │ │ ├── lumen.min.css │ │ ├── paper.min.css │ │ ├── readable.min.css │ │ ├── sandstone.min.css │ │ ├── simplex.min.css │ │ ├── spacelab.min.css │ │ ├── united.min.css │ │ └── yeti.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ └── shim │ │ ├── html5shiv.min.js │ │ └── respond.min.js ├── figure-html │ ├── example1-1.png │ └── unnamed-chunk-2-1.png ├── highlightjs-9.12.0 │ ├── default.css │ ├── highlight.js │ └── textmate.css ├── jquery-1.11.3 │ └── jquery.min.js ├── navigation-1.1 │ ├── codefolding.js │ ├── sourceembed.js │ └── tabsets.js └── pagedtable-1.1 │ ├── css │ └── pagedtable.css │ └── js │ └── pagedtable.js ├── simulate_spearman.Rmd ├── simulate_spearman.html ├── simulate_spearman_files ├── bootstrap-3.3.5 │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── cerulean.min.css │ │ ├── cosmo.min.css │ │ ├── darkly.min.css │ │ ├── flatly.min.css │ │ ├── fonts │ │ │ ├── Lato.ttf │ │ │ ├── LatoBold.ttf │ │ │ ├── LatoItalic.ttf │ │ │ ├── NewsCycle.ttf │ │ │ ├── NewsCycleBold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── OpenSansBold.ttf │ │ │ ├── OpenSansBoldItalic.ttf │ │ │ ├── OpenSansItalic.ttf │ │ │ ├── OpenSansLight.ttf │ │ │ ├── OpenSansLightItalic.ttf │ │ │ ├── Raleway.ttf │ │ │ ├── RalewayBold.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── RobotoBold.ttf │ │ │ ├── RobotoLight.ttf │ │ │ ├── RobotoMedium.ttf │ │ │ ├── SourceSansPro.ttf │ │ │ ├── SourceSansProBold.ttf │ │ │ ├── SourceSansProItalic.ttf │ │ │ ├── SourceSansProLight.ttf │ │ │ └── Ubuntu.ttf │ │ ├── journal.min.css │ │ ├── lumen.min.css │ │ ├── paper.min.css │ │ ├── readable.min.css │ │ ├── sandstone.min.css │ │ ├── simplex.min.css │ │ ├── spacelab.min.css │ │ ├── united.min.css │ │ └── yeti.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ └── shim │ │ ├── html5shiv.min.js │ │ └── respond.min.js ├── figure-html │ ├── unnamed-chunk-1-1.png │ └── unnamed-chunk-3-1.png ├── highlightjs-9.12.0 │ ├── default.css │ ├── highlight.js │ └── textmate.css ├── jquery-1.11.3 │ └── jquery.min.js ├── navigation-1.1 │ ├── codefolding.js │ ├── sourceembed.js │ └── tabsets.js └── pagedtable-1.1 │ ├── css │ └── pagedtable.css │ └── js │ └── pagedtable.js ├── simulate_wilcoxon.Rmd ├── simulate_wilcoxon.html └── simulate_wilcoxon_files ├── bootstrap-3.3.5 ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── cerulean.min.css │ ├── cosmo.min.css │ ├── darkly.min.css │ ├── flatly.min.css │ ├── fonts │ │ ├── Lato.ttf │ │ ├── LatoBold.ttf │ │ ├── LatoItalic.ttf │ │ ├── NewsCycle.ttf │ │ ├── NewsCycleBold.ttf │ │ ├── OpenSans.ttf │ │ ├── OpenSansBold.ttf │ │ ├── OpenSansBoldItalic.ttf │ │ ├── OpenSansItalic.ttf │ │ ├── OpenSansLight.ttf │ │ ├── OpenSansLightItalic.ttf │ │ ├── Raleway.ttf │ │ ├── RalewayBold.ttf │ │ ├── Roboto.ttf │ │ ├── RobotoBold.ttf │ │ ├── RobotoLight.ttf │ │ ├── RobotoMedium.ttf │ │ ├── SourceSansPro.ttf │ │ ├── SourceSansProBold.ttf │ │ ├── SourceSansProItalic.ttf │ │ ├── SourceSansProLight.ttf │ │ └── Ubuntu.ttf │ ├── journal.min.css │ ├── lumen.min.css │ ├── paper.min.css │ ├── readable.min.css │ ├── sandstone.min.css │ ├── simplex.min.css │ ├── spacelab.min.css │ ├── united.min.css │ └── yeti.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js └── shim │ ├── html5shiv.min.js │ └── respond.min.js ├── crosstalk-1.0.0 ├── css │ └── crosstalk.css └── js │ ├── crosstalk.js │ ├── crosstalk.js.map │ ├── crosstalk.min.js │ └── crosstalk.min.js.map ├── datatables-binding-0.5 └── datatables.js ├── datatables-css-0.0.0 └── datatables-crosstalk.css ├── dt-core-1.10.16 ├── css │ ├── jquery.dataTables.extra.css │ └── jquery.dataTables.min.css └── js │ └── jquery.dataTables.min.js ├── figure-html ├── example1-1.png ├── unnamed-chunk-1-1.png └── unnamed-chunk-2-1.png ├── highlightjs-9.12.0 ├── default.css ├── highlight.js └── textmate.css ├── htmlwidgets-1.3 └── htmlwidgets.js ├── jquery-1.11.3 └── jquery.min.js ├── jquery-1.12.4 ├── LICENSE.txt └── jquery.min.js ├── navigation-1.1 ├── codefolding.js ├── sourceembed.js └── tabsets.js └── pagedtable-1.1 ├── css └── pagedtable.css └── js └── pagedtable.js /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/README.md -------------------------------------------------------------------------------- /Tests as linear models.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/Tests as linear models.Rproj -------------------------------------------------------------------------------- /include/google_analytics_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/include/google_analytics_header.html -------------------------------------------------------------------------------- /include/hideOutput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/include/hideOutput.css -------------------------------------------------------------------------------- /include/hideOutput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/include/hideOutput.js -------------------------------------------------------------------------------- /include/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/include/style.css -------------------------------------------------------------------------------- /include/twitter_card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/include/twitter_card.html -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index.Rmd -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index.html -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/bootstrap-theme.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/bootstrap.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/bootstrap.css.map -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/bootstrap.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/cerulean.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/cerulean.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/cosmo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/cosmo.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/darkly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/darkly.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/flatly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/flatly.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/Lato.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/Raleway.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/Raleway.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/RalewayBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/RalewayBold.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/Roboto.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/RobotoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/RobotoBold.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/RobotoLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/RobotoLight.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/fonts/Ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/fonts/Ubuntu.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/journal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/journal.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/lumen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/lumen.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/paper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/paper.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/readable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/readable.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/sandstone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/sandstone.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/simplex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/simplex.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/spacelab.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/spacelab.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/united.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/united.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/css/yeti.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/css/yeti.min.css -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/js/bootstrap.js -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/js/bootstrap.min.js -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/js/npm.js -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/shim/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/shim/html5shiv.min.js -------------------------------------------------------------------------------- /index_files/bootstrap-3.3.5/shim/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/bootstrap-3.3.5/shim/respond.min.js -------------------------------------------------------------------------------- /index_files/crosstalk-1.0.0/css/crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/crosstalk-1.0.0/css/crosstalk.css -------------------------------------------------------------------------------- /index_files/crosstalk-1.0.0/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/crosstalk-1.0.0/js/crosstalk.js -------------------------------------------------------------------------------- /index_files/crosstalk-1.0.0/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/crosstalk-1.0.0/js/crosstalk.js.map -------------------------------------------------------------------------------- /index_files/crosstalk-1.0.0/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/crosstalk-1.0.0/js/crosstalk.min.js -------------------------------------------------------------------------------- /index_files/crosstalk-1.0.0/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/crosstalk-1.0.0/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /index_files/datatables-binding-0.5/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/datatables-binding-0.5/datatables.js -------------------------------------------------------------------------------- /index_files/datatables-binding-0.6/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/datatables-binding-0.6/datatables.js -------------------------------------------------------------------------------- /index_files/datatables-css-0.0.0/datatables-crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/datatables-css-0.0.0/datatables-crosstalk.css -------------------------------------------------------------------------------- /index_files/dt-core-1.10.16/css/jquery.dataTables.extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/dt-core-1.10.16/css/jquery.dataTables.extra.css -------------------------------------------------------------------------------- /index_files/dt-core-1.10.16/css/jquery.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/dt-core-1.10.16/css/jquery.dataTables.min.css -------------------------------------------------------------------------------- /index_files/dt-core-1.10.16/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/dt-core-1.10.16/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-19-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-19-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-20-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-20-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-21-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-26-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-27-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-27-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-28-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-28-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-36-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-36-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-37-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-37-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-38-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-38-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-47-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-47-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-48-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-48-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-49-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-49-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-55-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-55-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-56-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-56-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-57-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-57-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-70-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-70-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-70-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-70-2.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-70-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-70-3.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-70-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-70-4.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-70-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-70-5.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-70-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-70-6.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-71-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-71-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-71-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-71-2.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-71-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-71-3.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-71-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-71-4.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-71-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-71-5.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-71-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-71-6.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-72-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-72-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-72-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-72-2.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-72-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-72-3.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-72-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-72-4.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-72-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-72-5.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-72-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/figure-html/unnamed-chunk-72-6.png -------------------------------------------------------------------------------- /index_files/highlightjs-9.12.0/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/highlightjs-9.12.0/default.css -------------------------------------------------------------------------------- /index_files/highlightjs-9.12.0/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/highlightjs-9.12.0/highlight.js -------------------------------------------------------------------------------- /index_files/highlightjs-9.12.0/textmate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/highlightjs-9.12.0/textmate.css -------------------------------------------------------------------------------- /index_files/htmlwidgets-1.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/htmlwidgets-1.3/htmlwidgets.js -------------------------------------------------------------------------------- /index_files/jquery-1.12.4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jquery-1.12.4/LICENSE.txt -------------------------------------------------------------------------------- /index_files/jquery-1.12.4/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jquery-1.12.4/jquery.min.js -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/README -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/index.html -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/jquery-ui.css -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/jquery-ui.js -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/jquery-ui.min.css -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/jquery-ui.min.js -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/jquery-ui.structure.css -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/jquery-ui.theme.css -------------------------------------------------------------------------------- /index_files/jqueryui-1.11.4/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/jqueryui-1.11.4/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /index_files/navigation-1.1/codefolding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/navigation-1.1/codefolding.js -------------------------------------------------------------------------------- /index_files/navigation-1.1/sourceembed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/navigation-1.1/sourceembed.js -------------------------------------------------------------------------------- /index_files/navigation-1.1/tabsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/navigation-1.1/tabsets.js -------------------------------------------------------------------------------- /index_files/tocify-1.9.1/jquery.tocify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/tocify-1.9.1/jquery.tocify.css -------------------------------------------------------------------------------- /index_files/tocify-1.9.1/jquery.tocify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/index_files/tocify-1.9.1/jquery.tocify.js -------------------------------------------------------------------------------- /linear_tests_cheat_sheet.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/linear_tests_cheat_sheet.odt -------------------------------------------------------------------------------- /linear_tests_cheat_sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/linear_tests_cheat_sheet.pdf -------------------------------------------------------------------------------- /linear_tests_cheat_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/linear_tests_cheat_sheet.png -------------------------------------------------------------------------------- /simulate_wilcoxon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulate_wilcoxon.html -------------------------------------------------------------------------------- /simulations/simulate_kruskall.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall.Rmd -------------------------------------------------------------------------------- /simulations/simulate_kruskall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall.html -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/bootstrap-theme.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/bootstrap.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/bootstrap.css.map -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/bootstrap.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/cerulean.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/cerulean.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/cosmo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/cosmo.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/darkly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/darkly.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/flatly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/flatly.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/Lato.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/Raleway.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/Raleway.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/RalewayBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/RalewayBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/Roboto.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/RobotoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/RobotoBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/RobotoLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/RobotoLight.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/Ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/fonts/Ubuntu.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/journal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/journal.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/lumen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/lumen.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/paper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/paper.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/readable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/readable.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/sandstone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/sandstone.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/simplex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/simplex.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/spacelab.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/spacelab.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/united.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/united.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/css/yeti.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/css/yeti.min.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/js/bootstrap.js -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/js/bootstrap.min.js -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/js/npm.js -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/shim/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/shim/html5shiv.min.js -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/bootstrap-3.3.5/shim/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/bootstrap-3.3.5/shim/respond.min.js -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/figure-html/unnamed-chunk-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/figure-html/unnamed-chunk-1-1.png -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/highlightjs-9.12.0/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/highlightjs-9.12.0/default.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/highlightjs-9.12.0/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/highlightjs-9.12.0/highlight.js -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/highlightjs-9.12.0/textmate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/highlightjs-9.12.0/textmate.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/jquery-1.11.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/jquery-1.11.3/jquery.min.js -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/navigation-1.1/codefolding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/navigation-1.1/codefolding.js -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/navigation-1.1/sourceembed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/navigation-1.1/sourceembed.js -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/navigation-1.1/tabsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/navigation-1.1/tabsets.js -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/pagedtable-1.1/css/pagedtable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/pagedtable-1.1/css/pagedtable.css -------------------------------------------------------------------------------- /simulations/simulate_kruskall_files/pagedtable-1.1/js/pagedtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_kruskall_files/pagedtable-1.1/js/pagedtable.js -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney.Rmd -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney.html -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/bootstrap-theme.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/bootstrap.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/bootstrap.css.map -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/bootstrap.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/cerulean.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/cerulean.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/cosmo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/cosmo.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/darkly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/darkly.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/flatly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/flatly.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/Lato.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/Raleway.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/Raleway.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/RalewayBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/RalewayBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/Roboto.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/RobotoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/RobotoBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/RobotoLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/RobotoLight.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/Ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/fonts/Ubuntu.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/journal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/journal.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/lumen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/lumen.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/paper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/paper.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/readable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/readable.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/sandstone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/sandstone.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/simplex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/simplex.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/spacelab.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/spacelab.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/united.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/united.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/yeti.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/css/yeti.min.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/js/bootstrap.js -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/js/bootstrap.min.js -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/js/npm.js -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/shim/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/shim/html5shiv.min.js -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/bootstrap-3.3.5/shim/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/bootstrap-3.3.5/shim/respond.min.js -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/figure-html/example1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/figure-html/example1-1.png -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/highlightjs-9.12.0/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/highlightjs-9.12.0/default.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/highlightjs-9.12.0/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/highlightjs-9.12.0/highlight.js -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/highlightjs-9.12.0/textmate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/highlightjs-9.12.0/textmate.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/jquery-1.11.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/jquery-1.11.3/jquery.min.js -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/navigation-1.1/codefolding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/navigation-1.1/codefolding.js -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/navigation-1.1/sourceembed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/navigation-1.1/sourceembed.js -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/navigation-1.1/tabsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/navigation-1.1/tabsets.js -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/pagedtable-1.1/css/pagedtable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/pagedtable-1.1/css/pagedtable.css -------------------------------------------------------------------------------- /simulations/simulate_mannwhitney_files/pagedtable-1.1/js/pagedtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_mannwhitney_files/pagedtable-1.1/js/pagedtable.js -------------------------------------------------------------------------------- /simulations/simulate_spearman.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman.Rmd -------------------------------------------------------------------------------- /simulations/simulate_spearman.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman.html -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/bootstrap-theme.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/bootstrap.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/bootstrap.css.map -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/bootstrap.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/cerulean.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/cerulean.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/cosmo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/cosmo.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/darkly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/darkly.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/flatly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/flatly.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/Lato.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/Raleway.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/Raleway.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/RalewayBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/RalewayBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/Roboto.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/RobotoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/RobotoBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/RobotoLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/RobotoLight.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/Ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/fonts/Ubuntu.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/journal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/journal.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/lumen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/lumen.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/paper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/paper.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/readable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/readable.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/sandstone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/sandstone.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/simplex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/simplex.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/spacelab.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/spacelab.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/united.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/united.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/css/yeti.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/css/yeti.min.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/js/bootstrap.js -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/js/bootstrap.min.js -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/js/npm.js -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/shim/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/shim/html5shiv.min.js -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/bootstrap-3.3.5/shim/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/bootstrap-3.3.5/shim/respond.min.js -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/figure-html/unnamed-chunk-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/figure-html/unnamed-chunk-1-1.png -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/highlightjs-9.12.0/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/highlightjs-9.12.0/default.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/highlightjs-9.12.0/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/highlightjs-9.12.0/highlight.js -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/highlightjs-9.12.0/textmate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/highlightjs-9.12.0/textmate.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/jquery-1.11.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/jquery-1.11.3/jquery.min.js -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/navigation-1.1/codefolding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/navigation-1.1/codefolding.js -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/navigation-1.1/sourceembed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/navigation-1.1/sourceembed.js -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/navigation-1.1/tabsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/navigation-1.1/tabsets.js -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/pagedtable-1.1/css/pagedtable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/pagedtable-1.1/css/pagedtable.css -------------------------------------------------------------------------------- /simulations/simulate_spearman_files/pagedtable-1.1/js/pagedtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_spearman_files/pagedtable-1.1/js/pagedtable.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon.Rmd -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon.html -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/bootstrap-theme.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/bootstrap.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/bootstrap.css.map -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/bootstrap.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/cerulean.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/cerulean.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/cosmo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/cosmo.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/darkly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/darkly.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/flatly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/flatly.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/Lato.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/OpenSansLight.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/OpenSansLightItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/Raleway.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/Raleway.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/RalewayBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/RalewayBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/Roboto.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/RobotoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/RobotoBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/RobotoLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/RobotoLight.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/RobotoMedium.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/SourceSansPro.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/SourceSansProBold.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/SourceSansProItalic.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/SourceSansProLight.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/Ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/fonts/Ubuntu.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/journal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/journal.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/lumen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/lumen.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/paper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/paper.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/readable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/readable.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/sandstone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/sandstone.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/simplex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/simplex.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/spacelab.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/spacelab.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/united.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/united.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/yeti.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/css/yeti.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/js/bootstrap.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/js/bootstrap.min.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/js/npm.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/shim/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/shim/html5shiv.min.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/bootstrap-3.3.5/shim/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/bootstrap-3.3.5/shim/respond.min.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/crosstalk-1.0.0/css/crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/crosstalk-1.0.0/css/crosstalk.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/crosstalk-1.0.0/js/crosstalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/crosstalk-1.0.0/js/crosstalk.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/crosstalk-1.0.0/js/crosstalk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/crosstalk-1.0.0/js/crosstalk.js.map -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/crosstalk-1.0.0/js/crosstalk.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/crosstalk-1.0.0/js/crosstalk.min.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/crosstalk-1.0.0/js/crosstalk.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/crosstalk-1.0.0/js/crosstalk.min.js.map -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/datatables-binding-0.5/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/datatables-binding-0.5/datatables.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/datatables-css-0.0.0/datatables-crosstalk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/datatables-css-0.0.0/datatables-crosstalk.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/dt-core-1.10.16/css/jquery.dataTables.extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/dt-core-1.10.16/css/jquery.dataTables.extra.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/dt-core-1.10.16/css/jquery.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/dt-core-1.10.16/css/jquery.dataTables.min.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/dt-core-1.10.16/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/dt-core-1.10.16/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/figure-html/example1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/figure-html/example1-1.png -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/figure-html/unnamed-chunk-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/figure-html/unnamed-chunk-1-1.png -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/highlightjs-9.12.0/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/highlightjs-9.12.0/default.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/highlightjs-9.12.0/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/highlightjs-9.12.0/highlight.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/highlightjs-9.12.0/textmate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/highlightjs-9.12.0/textmate.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/htmlwidgets-1.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/htmlwidgets-1.3/htmlwidgets.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/jquery-1.11.3/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/jquery-1.11.3/jquery.min.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/jquery-1.12.4/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/jquery-1.12.4/LICENSE.txt -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/jquery-1.12.4/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/jquery-1.12.4/jquery.min.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/navigation-1.1/codefolding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/navigation-1.1/codefolding.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/navigation-1.1/sourceembed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/navigation-1.1/sourceembed.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/navigation-1.1/tabsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/navigation-1.1/tabsets.js -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/pagedtable-1.1/css/pagedtable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/pagedtable-1.1/css/pagedtable.css -------------------------------------------------------------------------------- /simulations/simulate_wilcoxon_files/pagedtable-1.1/js/pagedtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lindeloev/tests-as-linear/HEAD/simulations/simulate_wilcoxon_files/pagedtable-1.1/js/pagedtable.js --------------------------------------------------------------------------------