├── .Rbuildignore ├── data ├── README.md ├── 2-6-data │ ├── boxplot │ │ ├── lda.png │ │ ├── nb.png │ │ ├── kknn.png │ │ ├── rpart.png │ │ └── ranger.png │ ├── Heatmapa_piekna_missing.png │ ├── Heatmapa_piekna_wszystkie.png │ ├── datasets_frame.csv │ ├── rpart.csv │ ├── lda.csv │ ├── ranger.csv │ ├── nb.csv │ └── kknn.csv ├── interpretability_3_5_results.csv └── 1-8-reproducibility-journal-and-language │ └── results.csv ├── latex ├── after_body.tex ├── before_body.tex └── preamble.tex ├── 2-0-imputation.Rmd ├── book.pdf ├── 3-0-interpretability.Rmd ├── 1-4-img ├── fig1.png ├── fig2.png ├── fig3.png ├── fig4.png ├── fig5.png ├── fig6.png ├── fig7.png └── fig8.png ├── images ├── 2-4-0.png ├── 2-4-1.png ├── 2-4-2.png ├── 3-5-1.png ├── 3-5-2.png ├── 3-5-3.png ├── 3-5-4.png ├── 3-6-1.png ├── 3-6-2.png ├── 3-6-3.png ├── 3-6-4.png ├── 3-6-5.png ├── 3-6-6.png ├── 3-6-7.png ├── 3-6-8.png ├── 3-6-9.png ├── cover.png ├── 2-1-PCA.png ├── 2-1-time.png ├── 3-5-bfg.png ├── 3-5-bfl.png ├── 3-5-byg.png ├── 3-5-byl.png ├── 3-6-10.png ├── 3-6-11.png ├── 3-6-12.png ├── 3-6-13.png ├── 3-7-eda.png ├── 3-8-BUT.png ├── by-nc-sa.png ├── 2-1-ranks.png ├── 3-8-HIDDEN.png ├── 3-8-KLAPEK.png ├── 3-8-KURTKA.png ├── 3-8-LOGREG.png ├── 2-1-workflow.png ├── 3-4-results.png ├── 3-7-algorithm.png ├── 3-7-boxplot.png ├── 3-7-density.png ├── 3-8-KMEANS_1.png ├── 3-8-KMEANS_2.png ├── 2-3-methodology.png ├── 2-3-times_plot.png ├── 3-2-pdp_basic_Z.png ├── 3-8-BUT_HIDDEN.png ├── 3-8-HIDDEN_All.png ├── 3-8-KMEANS_ALL.png ├── 3-8-KNNMODEL_1.png ├── 2-1-influence-NA.png ├── 2-3-measures_plot.png ├── 2-3-rankings_plot.png ├── 3-2-rpart_result.png ├── 3-8-BlackBoxCONV_1.png ├── 3-8-CONVAUTOENC_1.png ├── 3-8-KURTKA_HIDDEN.png └── 3-8-SVDAUTOENC_1.png ├── 1-5-files ├── plot1.png └── plot2.png ├── 2-5-images ├── all1.PNG ├── all2.PNG ├── big1.PNG ├── big2.PNG ├── small1.PNG ├── small2.PNG ├── 27_colic.png ├── 29_credit.png ├── 4_labor.png ├── 56_vote.png ├── Legenda.PNG ├── overall.png ├── 188_eucalyptus.png ├── 55_hepatitis.png └── 944_echoMonths.png ├── 3-8-plots ├── BUT.png ├── HIDDEN.png ├── KLAPEK.png ├── KURTKA.png ├── LOGREG.png ├── BUT_HIDDEN.png ├── KMEANS_1.png ├── KMEANS_2.png ├── KNNMODEL_1.png ├── SVDAUTOENC_1.png ├── BlackBoxCONV_1.png ├── CONVAUTOENC_1.png └── KURTKA_HIDDEN.png ├── docs ├── 1-4-img │ ├── fig1.png │ ├── fig2.png │ ├── fig3.png │ ├── fig4.png │ ├── fig5.png │ ├── fig6.png │ ├── fig7.png │ └── fig8.png ├── images │ ├── 2-4-0.png │ ├── 2-4-1.png │ ├── 2-4-2.png │ ├── 3-5-1.png │ ├── 3-5-2.png │ ├── 3-5-3.png │ ├── 3-5-4.png │ ├── 3-6-1.png │ ├── 3-6-2.png │ ├── 3-6-3.png │ ├── 3-6-4.png │ ├── 3-6-5.png │ ├── 3-6-6.png │ ├── 3-6-7.png │ ├── 3-6-8.png │ ├── 3-6-9.png │ ├── cover.png │ ├── 2-1-PCA.png │ ├── 2-1-time.png │ ├── 3-5-bfg.png │ ├── 3-5-bfl.png │ ├── 3-5-byg.png │ ├── 3-5-byl.png │ ├── 3-6-10.png │ ├── 3-6-11.png │ ├── 3-6-12.png │ ├── 3-6-13.png │ ├── 3-7-eda.png │ ├── by-nc-sa.png │ ├── 2-1-ranks.png │ ├── 3-8-HIDDEN.png │ ├── 3-8-KLAPEK.png │ ├── 3-8-KURTKA.png │ ├── 3-8-LOGREG.png │ ├── 2-1-workflow.png │ ├── 3-4-results.png │ ├── 3-7-algorithm.png │ ├── 3-7-boxplot.png │ ├── 3-7-density.png │ ├── 3-8-KMEANS_1.png │ ├── 3-8-KMEANS_2.png │ ├── 2-3-times_plot.png │ ├── 3-2-pdp_basic_Z.png │ ├── 3-8-HIDDEN_All.png │ ├── 3-8-KMEANS_ALL.png │ ├── 3-8-KNNMODEL_1.png │ ├── 2-1-influence-NA.png │ ├── 2-3-measures_plot.png │ ├── 2-3-rankings_plot.png │ ├── 3-2-rpart_result.png │ ├── 3-8-BlackBoxCONV_1.png │ ├── 3-8-CONVAUTOENC_1.png │ ├── 3-8-KURTKA_HIDDEN.png │ ├── 3-8-SVDAUTOENC_1.png │ └── pdp_basic_Z_ranger.png ├── 1-5-files │ ├── plot1.png │ └── plot2.png ├── 2-5-images │ ├── all1.PNG │ ├── all2.PNG │ ├── big1.PNG │ ├── big2.PNG │ ├── small1.PNG │ ├── small2.PNG │ ├── 27_colic.png │ ├── 29_credit.png │ ├── 4_labor.png │ ├── 56_vote.png │ ├── Legenda.PNG │ ├── overall.png │ ├── 188_eucalyptus.png │ ├── 55_hepatitis.png │ └── 944_echoMonths.png ├── 1-6-files │ ├── art_freq.png │ ├── chunk_freq.png │ ├── group_freq.png │ ├── korelacje_celu_grupy.png │ ├── korelacje_celu_chunki2.png │ ├── korelacje_celu_artykoly.png │ ├── srednia_dlugosc_celu_chunki.png │ ├── srednia_dlugosc_celu_grupy.png │ ├── reprodukowalnosc_celu_chunki.png │ └── srednia_dlugosc_celu_artykoly.png ├── 2-2-files │ ├── rankingAll.png │ ├── rankingGood.png │ ├── imputationTimesBoxplot.png │ └── imputationTimesScatter.png ├── 3-1-graphs │ ├── DecisionTree.jpg │ └── CompareModels_2.png ├── 3-2-graphs │ ├── rpart_result.png │ └── pdp_basic_Z_ranger.png ├── data │ └── 2-6-data │ │ ├── boxplot │ │ ├── lda.png │ │ ├── nb.png │ │ ├── kknn.png │ │ ├── rpart.png │ │ └── ranger.png │ │ ├── Heatmapa_piekna_missing.png │ │ └── Heatmapa_piekna_wszystkie.png ├── 1-2-files │ └── Summary_of_marking_articles.png ├── libs │ ├── gitbook │ │ ├── css │ │ │ ├── fontawesome │ │ │ │ └── fontawesome-webfont.ttf │ │ │ ├── plugin-clipboard.css │ │ │ ├── plugin-table.css │ │ │ ├── plugin-search.css │ │ │ ├── plugin-bookdown.css │ │ │ └── plugin-fontsettings.css │ │ └── js │ │ │ ├── plugin-clipboard.js │ │ │ ├── jquery.highlight.js │ │ │ ├── plugin-sharing.js │ │ │ ├── plugin-fontsettings.js │ │ │ ├── plugin-search.js │ │ │ └── plugin-bookdown.js │ ├── kePrint │ │ └── kePrint.js │ └── header-attrs │ │ └── header-attrs.js ├── css │ └── style.css └── book_files │ └── figure-html │ ├── plot-mark-language-1.svg │ ├── plot-value-language-1.svg │ ├── plot-mark-journal-1.svg │ ├── plot-value-journal-1.svg │ ├── unnamed-chunk-10-1.svg │ ├── plot-mark-both-1.svg │ ├── plot-value-both-1.svg │ └── unnamed-chunk-15-1.svg ├── 1-6-files ├── art_freq.png ├── chunk_freq.png ├── group_freq.png ├── korelacje_celu_grupy.png ├── korelacje_celu_chunki.png ├── korelacje_celu_chunki2.png ├── korelacje_celu_artykoly.png ├── srednia_dlugosc_celu_chunki.png ├── srednia_dlugosc_celu_grupy.png ├── reprodukowalnosc_celu_chunki.png ├── srednia_dlugosc_celu_artykoly.png ├── articles.csv ├── generowanie_obrazkow.R └── groups.csv ├── 2-2-files ├── rankingAll.png ├── rankingGood.png ├── imputationTimesBoxplot.png └── imputationTimesScatter.png ├── 3-1-graphs ├── CompareModels.png ├── DecisionTree.jpg └── CompareModels_2.png ├── DESCRIPTION ├── 1-2-files ├── Summary_of_marking_articles.png └── code.R ├── .gitignore ├── .travis.yml ├── 1-7-data ├── issuescompare.csv ├── repro.csv └── corr.csv ├── 9-0-references.Rmd ├── Makefile ├── _bookdown.yml ├── 8-0-acknowledgements.Rmd ├── 1-0-reproducibility.Rmd ├── css └── style.css ├── _output.yml ├── README.md ├── .github └── workflows │ ├── check_pr.yml │ └── bookdown.yml ├── index.Rmd └── 3-3-interpretable-higgs.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^.*\.Rproj$ 2 | ^\.Rproj\.user$ 3 | -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | Here add datasets needed for chapters -------------------------------------------------------------------------------- /latex/after_body.tex: -------------------------------------------------------------------------------- 1 | \backmatter 2 | \printindex 3 | -------------------------------------------------------------------------------- /2-0-imputation.Rmd: -------------------------------------------------------------------------------- 1 | # Imputation {#imputation} 2 | 3 | Imputation -------------------------------------------------------------------------------- /book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/book.pdf -------------------------------------------------------------------------------- /3-0-interpretability.Rmd: -------------------------------------------------------------------------------- 1 | # Interpretability {#interpretability} 2 | 3 | Interpretability -------------------------------------------------------------------------------- /1-4-img/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-4-img/fig1.png -------------------------------------------------------------------------------- /1-4-img/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-4-img/fig2.png -------------------------------------------------------------------------------- /1-4-img/fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-4-img/fig3.png -------------------------------------------------------------------------------- /1-4-img/fig4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-4-img/fig4.png -------------------------------------------------------------------------------- /1-4-img/fig5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-4-img/fig5.png -------------------------------------------------------------------------------- /1-4-img/fig6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-4-img/fig6.png -------------------------------------------------------------------------------- /1-4-img/fig7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-4-img/fig7.png -------------------------------------------------------------------------------- /1-4-img/fig8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-4-img/fig8.png -------------------------------------------------------------------------------- /images/2-4-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/2-4-0.png -------------------------------------------------------------------------------- /images/2-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/2-4-1.png -------------------------------------------------------------------------------- /images/2-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/2-4-2.png -------------------------------------------------------------------------------- /images/3-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-5-1.png -------------------------------------------------------------------------------- /images/3-5-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-5-2.png -------------------------------------------------------------------------------- /images/3-5-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-5-3.png -------------------------------------------------------------------------------- /images/3-5-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-5-4.png -------------------------------------------------------------------------------- /images/3-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-6-1.png -------------------------------------------------------------------------------- /images/3-6-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-6-2.png -------------------------------------------------------------------------------- /images/3-6-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-6-3.png -------------------------------------------------------------------------------- /images/3-6-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-6-4.png -------------------------------------------------------------------------------- /images/3-6-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-6-5.png -------------------------------------------------------------------------------- /images/3-6-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-6-6.png -------------------------------------------------------------------------------- /images/3-6-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-6-7.png -------------------------------------------------------------------------------- /images/3-6-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-6-8.png -------------------------------------------------------------------------------- /images/3-6-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-6-9.png -------------------------------------------------------------------------------- /images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/cover.png -------------------------------------------------------------------------------- /1-5-files/plot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-5-files/plot1.png -------------------------------------------------------------------------------- /1-5-files/plot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-5-files/plot2.png -------------------------------------------------------------------------------- /2-5-images/all1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/all1.PNG -------------------------------------------------------------------------------- /2-5-images/all2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/all2.PNG -------------------------------------------------------------------------------- /2-5-images/big1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/big1.PNG -------------------------------------------------------------------------------- /2-5-images/big2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/big2.PNG -------------------------------------------------------------------------------- /3-8-plots/BUT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-8-plots/BUT.png -------------------------------------------------------------------------------- /images/2-1-PCA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/2-1-PCA.png -------------------------------------------------------------------------------- /images/2-1-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/2-1-time.png -------------------------------------------------------------------------------- /images/3-5-bfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-5-bfg.png -------------------------------------------------------------------------------- /images/3-5-bfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-5-bfl.png -------------------------------------------------------------------------------- /images/3-5-byg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-5-byg.png -------------------------------------------------------------------------------- /images/3-5-byl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-5-byl.png -------------------------------------------------------------------------------- /images/3-6-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-6-10.png -------------------------------------------------------------------------------- /images/3-6-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-6-11.png -------------------------------------------------------------------------------- /images/3-6-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-6-12.png -------------------------------------------------------------------------------- /images/3-6-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-6-13.png -------------------------------------------------------------------------------- /images/3-7-eda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-7-eda.png -------------------------------------------------------------------------------- /images/3-8-BUT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-BUT.png -------------------------------------------------------------------------------- /images/by-nc-sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/by-nc-sa.png -------------------------------------------------------------------------------- /2-5-images/small1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/small1.PNG -------------------------------------------------------------------------------- /2-5-images/small2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/small2.PNG -------------------------------------------------------------------------------- /3-8-plots/HIDDEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-8-plots/HIDDEN.png -------------------------------------------------------------------------------- /3-8-plots/KLAPEK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-8-plots/KLAPEK.png -------------------------------------------------------------------------------- /3-8-plots/KURTKA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-8-plots/KURTKA.png -------------------------------------------------------------------------------- /3-8-plots/LOGREG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-8-plots/LOGREG.png -------------------------------------------------------------------------------- /docs/1-4-img/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-4-img/fig1.png -------------------------------------------------------------------------------- /docs/1-4-img/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-4-img/fig2.png -------------------------------------------------------------------------------- /docs/1-4-img/fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-4-img/fig3.png -------------------------------------------------------------------------------- /docs/1-4-img/fig4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-4-img/fig4.png -------------------------------------------------------------------------------- /docs/1-4-img/fig5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-4-img/fig5.png -------------------------------------------------------------------------------- /docs/1-4-img/fig6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-4-img/fig6.png -------------------------------------------------------------------------------- /docs/1-4-img/fig7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-4-img/fig7.png -------------------------------------------------------------------------------- /docs/1-4-img/fig8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-4-img/fig8.png -------------------------------------------------------------------------------- /docs/images/2-4-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/2-4-0.png -------------------------------------------------------------------------------- /docs/images/2-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/2-4-1.png -------------------------------------------------------------------------------- /docs/images/2-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/2-4-2.png -------------------------------------------------------------------------------- /docs/images/3-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-5-1.png -------------------------------------------------------------------------------- /docs/images/3-5-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-5-2.png -------------------------------------------------------------------------------- /docs/images/3-5-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-5-3.png -------------------------------------------------------------------------------- /docs/images/3-5-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-5-4.png -------------------------------------------------------------------------------- /docs/images/3-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-6-1.png -------------------------------------------------------------------------------- /docs/images/3-6-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-6-2.png -------------------------------------------------------------------------------- /docs/images/3-6-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-6-3.png -------------------------------------------------------------------------------- /docs/images/3-6-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-6-4.png -------------------------------------------------------------------------------- /docs/images/3-6-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-6-5.png -------------------------------------------------------------------------------- /docs/images/3-6-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-6-6.png -------------------------------------------------------------------------------- /docs/images/3-6-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-6-7.png -------------------------------------------------------------------------------- /docs/images/3-6-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-6-8.png -------------------------------------------------------------------------------- /docs/images/3-6-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-6-9.png -------------------------------------------------------------------------------- /docs/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/cover.png -------------------------------------------------------------------------------- /images/2-1-ranks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/2-1-ranks.png -------------------------------------------------------------------------------- /images/3-8-HIDDEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-HIDDEN.png -------------------------------------------------------------------------------- /images/3-8-KLAPEK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-KLAPEK.png -------------------------------------------------------------------------------- /images/3-8-KURTKA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-KURTKA.png -------------------------------------------------------------------------------- /images/3-8-LOGREG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-LOGREG.png -------------------------------------------------------------------------------- /1-6-files/art_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-6-files/art_freq.png -------------------------------------------------------------------------------- /1-6-files/chunk_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-6-files/chunk_freq.png -------------------------------------------------------------------------------- /1-6-files/group_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-6-files/group_freq.png -------------------------------------------------------------------------------- /2-2-files/rankingAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-2-files/rankingAll.png -------------------------------------------------------------------------------- /2-5-images/27_colic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/27_colic.png -------------------------------------------------------------------------------- /2-5-images/29_credit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/29_credit.png -------------------------------------------------------------------------------- /2-5-images/4_labor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/4_labor.png -------------------------------------------------------------------------------- /2-5-images/56_vote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/56_vote.png -------------------------------------------------------------------------------- /2-5-images/Legenda.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/Legenda.PNG -------------------------------------------------------------------------------- /2-5-images/overall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/overall.png -------------------------------------------------------------------------------- /3-8-plots/BUT_HIDDEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-8-plots/BUT_HIDDEN.png -------------------------------------------------------------------------------- /3-8-plots/KMEANS_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-8-plots/KMEANS_1.png -------------------------------------------------------------------------------- /3-8-plots/KMEANS_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-8-plots/KMEANS_2.png -------------------------------------------------------------------------------- /3-8-plots/KNNMODEL_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-8-plots/KNNMODEL_1.png -------------------------------------------------------------------------------- /docs/1-5-files/plot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-5-files/plot1.png -------------------------------------------------------------------------------- /docs/1-5-files/plot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-5-files/plot2.png -------------------------------------------------------------------------------- /docs/2-5-images/all1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/all1.PNG -------------------------------------------------------------------------------- /docs/2-5-images/all2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/all2.PNG -------------------------------------------------------------------------------- /docs/2-5-images/big1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/big1.PNG -------------------------------------------------------------------------------- /docs/2-5-images/big2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/big2.PNG -------------------------------------------------------------------------------- /docs/images/2-1-PCA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/2-1-PCA.png -------------------------------------------------------------------------------- /docs/images/2-1-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/2-1-time.png -------------------------------------------------------------------------------- /docs/images/3-5-bfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-5-bfg.png -------------------------------------------------------------------------------- /docs/images/3-5-bfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-5-bfl.png -------------------------------------------------------------------------------- /docs/images/3-5-byg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-5-byg.png -------------------------------------------------------------------------------- /docs/images/3-5-byl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-5-byl.png -------------------------------------------------------------------------------- /docs/images/3-6-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-6-10.png -------------------------------------------------------------------------------- /docs/images/3-6-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-6-11.png -------------------------------------------------------------------------------- /docs/images/3-6-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-6-12.png -------------------------------------------------------------------------------- /docs/images/3-6-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-6-13.png -------------------------------------------------------------------------------- /docs/images/3-7-eda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-7-eda.png -------------------------------------------------------------------------------- /docs/images/by-nc-sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/by-nc-sa.png -------------------------------------------------------------------------------- /images/2-1-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/2-1-workflow.png -------------------------------------------------------------------------------- /images/3-4-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-4-results.png -------------------------------------------------------------------------------- /images/3-7-algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-7-algorithm.png -------------------------------------------------------------------------------- /images/3-7-boxplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-7-boxplot.png -------------------------------------------------------------------------------- /images/3-7-density.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-7-density.png -------------------------------------------------------------------------------- /images/3-8-KMEANS_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-KMEANS_1.png -------------------------------------------------------------------------------- /images/3-8-KMEANS_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-KMEANS_2.png -------------------------------------------------------------------------------- /2-2-files/rankingGood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-2-files/rankingGood.png -------------------------------------------------------------------------------- /3-8-plots/SVDAUTOENC_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-8-plots/SVDAUTOENC_1.png -------------------------------------------------------------------------------- /docs/2-5-images/small1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/small1.PNG -------------------------------------------------------------------------------- /docs/2-5-images/small2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/small2.PNG -------------------------------------------------------------------------------- /docs/images/2-1-ranks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/2-1-ranks.png -------------------------------------------------------------------------------- /docs/images/3-8-HIDDEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-8-HIDDEN.png -------------------------------------------------------------------------------- /docs/images/3-8-KLAPEK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-8-KLAPEK.png -------------------------------------------------------------------------------- /docs/images/3-8-KURTKA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-8-KURTKA.png -------------------------------------------------------------------------------- /docs/images/3-8-LOGREG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-8-LOGREG.png -------------------------------------------------------------------------------- /images/2-3-methodology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/2-3-methodology.png -------------------------------------------------------------------------------- /images/2-3-times_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/2-3-times_plot.png -------------------------------------------------------------------------------- /images/3-2-pdp_basic_Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-2-pdp_basic_Z.png -------------------------------------------------------------------------------- /images/3-8-BUT_HIDDEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-BUT_HIDDEN.png -------------------------------------------------------------------------------- /images/3-8-HIDDEN_All.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-HIDDEN_All.png -------------------------------------------------------------------------------- /images/3-8-KMEANS_ALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-KMEANS_ALL.png -------------------------------------------------------------------------------- /images/3-8-KNNMODEL_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-KNNMODEL_1.png -------------------------------------------------------------------------------- /2-5-images/188_eucalyptus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/188_eucalyptus.png -------------------------------------------------------------------------------- /2-5-images/55_hepatitis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/55_hepatitis.png -------------------------------------------------------------------------------- /2-5-images/944_echoMonths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-5-images/944_echoMonths.png -------------------------------------------------------------------------------- /3-1-graphs/CompareModels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-1-graphs/CompareModels.png -------------------------------------------------------------------------------- /3-1-graphs/DecisionTree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-1-graphs/DecisionTree.jpg -------------------------------------------------------------------------------- /3-8-plots/BlackBoxCONV_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-8-plots/BlackBoxCONV_1.png -------------------------------------------------------------------------------- /3-8-plots/CONVAUTOENC_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-8-plots/CONVAUTOENC_1.png -------------------------------------------------------------------------------- /3-8-plots/KURTKA_HIDDEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-8-plots/KURTKA_HIDDEN.png -------------------------------------------------------------------------------- /data/2-6-data/boxplot/lda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/data/2-6-data/boxplot/lda.png -------------------------------------------------------------------------------- /data/2-6-data/boxplot/nb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/data/2-6-data/boxplot/nb.png -------------------------------------------------------------------------------- /docs/1-6-files/art_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-6-files/art_freq.png -------------------------------------------------------------------------------- /docs/1-6-files/chunk_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-6-files/chunk_freq.png -------------------------------------------------------------------------------- /docs/1-6-files/group_freq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-6-files/group_freq.png -------------------------------------------------------------------------------- /docs/2-2-files/rankingAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-2-files/rankingAll.png -------------------------------------------------------------------------------- /docs/2-5-images/27_colic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/27_colic.png -------------------------------------------------------------------------------- /docs/2-5-images/29_credit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/29_credit.png -------------------------------------------------------------------------------- /docs/2-5-images/4_labor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/4_labor.png -------------------------------------------------------------------------------- /docs/2-5-images/56_vote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/56_vote.png -------------------------------------------------------------------------------- /docs/2-5-images/Legenda.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/Legenda.PNG -------------------------------------------------------------------------------- /docs/2-5-images/overall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/overall.png -------------------------------------------------------------------------------- /docs/images/2-1-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/2-1-workflow.png -------------------------------------------------------------------------------- /docs/images/3-4-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-4-results.png -------------------------------------------------------------------------------- /docs/images/3-7-algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-7-algorithm.png -------------------------------------------------------------------------------- /docs/images/3-7-boxplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-7-boxplot.png -------------------------------------------------------------------------------- /docs/images/3-7-density.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-7-density.png -------------------------------------------------------------------------------- /docs/images/3-8-KMEANS_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-8-KMEANS_1.png -------------------------------------------------------------------------------- /docs/images/3-8-KMEANS_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-8-KMEANS_2.png -------------------------------------------------------------------------------- /images/2-1-influence-NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/2-1-influence-NA.png -------------------------------------------------------------------------------- /images/2-3-measures_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/2-3-measures_plot.png -------------------------------------------------------------------------------- /images/2-3-rankings_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/2-3-rankings_plot.png -------------------------------------------------------------------------------- /images/3-2-rpart_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-2-rpart_result.png -------------------------------------------------------------------------------- /images/3-8-BlackBoxCONV_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-BlackBoxCONV_1.png -------------------------------------------------------------------------------- /images/3-8-CONVAUTOENC_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-CONVAUTOENC_1.png -------------------------------------------------------------------------------- /images/3-8-KURTKA_HIDDEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-KURTKA_HIDDEN.png -------------------------------------------------------------------------------- /images/3-8-SVDAUTOENC_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/images/3-8-SVDAUTOENC_1.png -------------------------------------------------------------------------------- /3-1-graphs/CompareModels_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/3-1-graphs/CompareModels_2.png -------------------------------------------------------------------------------- /data/2-6-data/boxplot/kknn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/data/2-6-data/boxplot/kknn.png -------------------------------------------------------------------------------- /data/2-6-data/boxplot/rpart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/data/2-6-data/boxplot/rpart.png -------------------------------------------------------------------------------- /docs/2-2-files/rankingGood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-2-files/rankingGood.png -------------------------------------------------------------------------------- /docs/images/2-3-times_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/2-3-times_plot.png -------------------------------------------------------------------------------- /docs/images/3-2-pdp_basic_Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-2-pdp_basic_Z.png -------------------------------------------------------------------------------- /docs/images/3-8-HIDDEN_All.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-8-HIDDEN_All.png -------------------------------------------------------------------------------- /docs/images/3-8-KMEANS_ALL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-8-KMEANS_ALL.png -------------------------------------------------------------------------------- /docs/images/3-8-KNNMODEL_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-8-KNNMODEL_1.png -------------------------------------------------------------------------------- /1-6-files/korelacje_celu_grupy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-6-files/korelacje_celu_grupy.png -------------------------------------------------------------------------------- /data/2-6-data/boxplot/ranger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/data/2-6-data/boxplot/ranger.png -------------------------------------------------------------------------------- /docs/2-5-images/188_eucalyptus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/188_eucalyptus.png -------------------------------------------------------------------------------- /docs/2-5-images/55_hepatitis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/55_hepatitis.png -------------------------------------------------------------------------------- /docs/2-5-images/944_echoMonths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-5-images/944_echoMonths.png -------------------------------------------------------------------------------- /docs/3-1-graphs/DecisionTree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/3-1-graphs/DecisionTree.jpg -------------------------------------------------------------------------------- /docs/3-2-graphs/rpart_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/3-2-graphs/rpart_result.png -------------------------------------------------------------------------------- /docs/data/2-6-data/boxplot/lda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/data/2-6-data/boxplot/lda.png -------------------------------------------------------------------------------- /docs/data/2-6-data/boxplot/nb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/data/2-6-data/boxplot/nb.png -------------------------------------------------------------------------------- /docs/images/2-1-influence-NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/2-1-influence-NA.png -------------------------------------------------------------------------------- /docs/images/2-3-measures_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/2-3-measures_plot.png -------------------------------------------------------------------------------- /docs/images/2-3-rankings_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/2-3-rankings_plot.png -------------------------------------------------------------------------------- /docs/images/3-2-rpart_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-2-rpart_result.png -------------------------------------------------------------------------------- /docs/images/3-8-BlackBoxCONV_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-8-BlackBoxCONV_1.png -------------------------------------------------------------------------------- /docs/images/3-8-CONVAUTOENC_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-8-CONVAUTOENC_1.png -------------------------------------------------------------------------------- /docs/images/3-8-KURTKA_HIDDEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-8-KURTKA_HIDDEN.png -------------------------------------------------------------------------------- /docs/images/3-8-SVDAUTOENC_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/3-8-SVDAUTOENC_1.png -------------------------------------------------------------------------------- /docs/images/pdp_basic_Z_ranger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/images/pdp_basic_Z_ranger.png -------------------------------------------------------------------------------- /1-6-files/korelacje_celu_chunki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-6-files/korelacje_celu_chunki.png -------------------------------------------------------------------------------- /1-6-files/korelacje_celu_chunki2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-6-files/korelacje_celu_chunki2.png -------------------------------------------------------------------------------- /2-2-files/imputationTimesBoxplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-2-files/imputationTimesBoxplot.png -------------------------------------------------------------------------------- /2-2-files/imputationTimesScatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/2-2-files/imputationTimesScatter.png -------------------------------------------------------------------------------- /docs/3-1-graphs/CompareModels_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/3-1-graphs/CompareModels_2.png -------------------------------------------------------------------------------- /docs/data/2-6-data/boxplot/kknn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/data/2-6-data/boxplot/kknn.png -------------------------------------------------------------------------------- /docs/data/2-6-data/boxplot/rpart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/data/2-6-data/boxplot/rpart.png -------------------------------------------------------------------------------- /1-6-files/korelacje_celu_artykoly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-6-files/korelacje_celu_artykoly.png -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- 1 | Package: case-studies 2 | Title: ML Case Studies 3 | Version: 0.0.1 4 | Depends: 5 | devtools, 6 | knitr, 7 | bookdown, 8 | -------------------------------------------------------------------------------- /docs/1-6-files/korelacje_celu_grupy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-6-files/korelacje_celu_grupy.png -------------------------------------------------------------------------------- /docs/3-2-graphs/pdp_basic_Z_ranger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/3-2-graphs/pdp_basic_Z_ranger.png -------------------------------------------------------------------------------- /docs/data/2-6-data/boxplot/ranger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/data/2-6-data/boxplot/ranger.png -------------------------------------------------------------------------------- /1-2-files/Summary_of_marking_articles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-2-files/Summary_of_marking_articles.png -------------------------------------------------------------------------------- /1-6-files/srednia_dlugosc_celu_chunki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-6-files/srednia_dlugosc_celu_chunki.png -------------------------------------------------------------------------------- /1-6-files/srednia_dlugosc_celu_grupy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-6-files/srednia_dlugosc_celu_grupy.png -------------------------------------------------------------------------------- /data/2-6-data/Heatmapa_piekna_missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/data/2-6-data/Heatmapa_piekna_missing.png -------------------------------------------------------------------------------- /docs/1-6-files/korelacje_celu_chunki2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-6-files/korelacje_celu_chunki2.png -------------------------------------------------------------------------------- /docs/2-2-files/imputationTimesBoxplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-2-files/imputationTimesBoxplot.png -------------------------------------------------------------------------------- /docs/2-2-files/imputationTimesScatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/2-2-files/imputationTimesScatter.png -------------------------------------------------------------------------------- /1-6-files/reprodukowalnosc_celu_chunki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-6-files/reprodukowalnosc_celu_chunki.png -------------------------------------------------------------------------------- /1-6-files/srednia_dlugosc_celu_artykoly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/1-6-files/srednia_dlugosc_celu_artykoly.png -------------------------------------------------------------------------------- /data/2-6-data/Heatmapa_piekna_wszystkie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/data/2-6-data/Heatmapa_piekna_wszystkie.png -------------------------------------------------------------------------------- /docs/1-6-files/korelacje_celu_artykoly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-6-files/korelacje_celu_artykoly.png -------------------------------------------------------------------------------- /docs/1-2-files/Summary_of_marking_articles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-2-files/Summary_of_marking_articles.png -------------------------------------------------------------------------------- /docs/1-6-files/srednia_dlugosc_celu_chunki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-6-files/srednia_dlugosc_celu_chunki.png -------------------------------------------------------------------------------- /docs/1-6-files/srednia_dlugosc_celu_grupy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-6-files/srednia_dlugosc_celu_grupy.png -------------------------------------------------------------------------------- /docs/data/2-6-data/Heatmapa_piekna_missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/data/2-6-data/Heatmapa_piekna_missing.png -------------------------------------------------------------------------------- /docs/1-6-files/reprodukowalnosc_celu_chunki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-6-files/reprodukowalnosc_celu_chunki.png -------------------------------------------------------------------------------- /docs/1-6-files/srednia_dlugosc_celu_artykoly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/1-6-files/srednia_dlugosc_celu_artykoly.png -------------------------------------------------------------------------------- /docs/data/2-6-data/Heatmapa_piekna_wszystkie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/data/2-6-data/Heatmapa_piekna_wszystkie.png -------------------------------------------------------------------------------- /docs/libs/gitbook/css/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DominikRafacz/2020L-WB-Book/master/docs/libs/gitbook/css/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | .Ruserdata 5 | *.swp 6 | _book 7 | _bookdown_files 8 | _main.Rmd 9 | *.log 10 | *.Rproj 11 | book.tex 12 | packages.bib 13 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: r 2 | pandoc_version: 1.19.2.1 3 | sudo: required 4 | cache: 5 | packages: true 6 | before_install: 7 | - sudo apt-get install libv8-dev 8 | before_script: 9 | - chmod +x ./_build.sh 10 | script: ./_build.sh 11 | 12 | -------------------------------------------------------------------------------- /1-7-data/issuescompare.csv: -------------------------------------------------------------------------------- 1 | "","name","value","n" 2 | "1","api",-1,1 3 | "2","api",0,15 4 | "3","api",1,2 5 | "4","names",-1,1 6 | "5","names",0,14 7 | "6","names",1,3 8 | "7","results",-1,1 9 | "8","results",0,15 10 | "9","results",1,2 11 | -------------------------------------------------------------------------------- /9-0-references.Rmd: -------------------------------------------------------------------------------- 1 | `r if (knitr:::is_html_output()) '# References {-}'` 2 | 3 | ```{r include=FALSE} 4 | # generate a BibTeX database automatically for some R packages 5 | knitr::write_bib(c( 6 | .packages(), 'bookdown', 'knitr', 'rmarkdown' 7 | ), 'packages.bib') 8 | ``` 9 | 10 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: html pdf epub 2 | 3 | html: *.Rmd 4 | Rscript -e "bookdown::render_book('./', 'bookdown::gitbook')" 5 | 6 | pdf: *.Rmd 7 | Rscript -e "bookdown::render_book('./', 'bookdown::pdf_book')" 8 | 9 | epub : *.Rmd 10 | Rscript -e "bookdown::render_book('./', 'bookdown::epub_book')" 11 | 12 | -------------------------------------------------------------------------------- /_bookdown.yml: -------------------------------------------------------------------------------- 1 | book_filename: book 2 | repo: https://github.com/mini-pw/2020L-WB-Book 3 | output_dir: docs 4 | clean: [packages.bib, bookdown.bbl] 5 | delete_merged_file: true 6 | language: 7 | label: 8 | fig: "FIGURE " 9 | tab: "TABLE " 10 | ui: 11 | edit: "Edit" 12 | chapter_name: "Chapter " 13 | -------------------------------------------------------------------------------- /8-0-acknowledgements.Rmd: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | 3 | This project is inspired by a fantastic book [Limitations of Interpretable Machine Learning Methods](https://compstat-lmu.github.io/iml_methods_limitations/) created at the Department of Statistics, LMU Munich. 4 | We used the LIML project as cornerstone for this reopsitory. 5 | -------------------------------------------------------------------------------- /docs/libs/kePrint/kePrint.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | if (typeof $('[data-toggle="tooltip"]').tooltip === 'function') { 3 | $('[data-toggle="tooltip"]').tooltip(); 4 | } 5 | if ($('[data-toggle="popover"]').popover === 'function') { 6 | $('[data-toggle="popover"]').popover(); 7 | } 8 | }); 9 | -------------------------------------------------------------------------------- /docs/libs/gitbook/css/plugin-clipboard.css: -------------------------------------------------------------------------------- 1 | div.sourceCode { 2 | position: relative; 3 | } 4 | 5 | .copy-to-clipboard-button { 6 | position: absolute; 7 | right: 0; 8 | top: 0; 9 | visibility: hidden; 10 | } 11 | 12 | .copy-to-clipboard-button:focus { 13 | outline: 0; 14 | } 15 | 16 | div.sourceCode:hover > .copy-to-clipboard-button { 17 | visibility: visible; 18 | } 19 | -------------------------------------------------------------------------------- /latex/before_body.tex: -------------------------------------------------------------------------------- 1 | % you may need to leave a few empty pages before the dedication page 2 | 3 | %\cleardoublepage\newpage\thispagestyle{empty}\null 4 | %\cleardoublepage\newpage\thispagestyle{empty}\null 5 | %\cleardoublepage\newpage 6 | \thispagestyle{empty} 7 | 8 | \begin{center} 9 | \end{center} 10 | 11 | \setlength{\abovedisplayskip}{-5pt} 12 | \setlength{\abovedisplayshortskip}{-5pt} 13 | -------------------------------------------------------------------------------- /1-0-reproducibility.Rmd: -------------------------------------------------------------------------------- 1 | # Reproducibility of scientific papers {#reproducibility} 2 | 3 | This chapter contains a wide range of studies on the reproducibility of scientific articles. 4 | Each subsection is a self-contained paper answering a different research problem. 5 | 6 | Please, note that each subsection contains a work of different authors and therefore subsections may differ at some points, for example, definitions of reproducibility used in particular studies. -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | p.caption { 2 | color: #777; 3 | margin-top: 10px; 4 | } 5 | p code { 6 | white-space: inherit; 7 | } 8 | pre { 9 | word-break: normal; 10 | word-wrap: normal; 11 | } 12 | pre code { 13 | white-space: inherit; 14 | } 15 | p.flushright { 16 | text-align: right; 17 | } 18 | blockquote > p:last-child { 19 | text-align: right; 20 | } 21 | blockquote > p:first-child { 22 | text-align: inherit; 23 | } 24 | 25 | 26 | #which-neighbours-affected-house-prices-in-the-90s p 27 | { 28 | text-align: justify; 29 | text-justify: inter-word; 30 | } -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- 1 | p.caption { 2 | color: #777; 3 | margin-top: 10px; 4 | } 5 | p code { 6 | white-space: inherit; 7 | } 8 | pre { 9 | word-break: normal; 10 | word-wrap: normal; 11 | } 12 | pre code { 13 | white-space: inherit; 14 | } 15 | p.flushright { 16 | text-align: right; 17 | } 18 | blockquote > p:last-child { 19 | text-align: right; 20 | } 21 | blockquote > p:first-child { 22 | text-align: inherit; 23 | } 24 | 25 | 26 | #which-neighbours-affected-house-prices-in-the-90s p 27 | { 28 | text-align: justify; 29 | text-justify: inter-word; 30 | } -------------------------------------------------------------------------------- /docs/libs/header-attrs/header-attrs.js: -------------------------------------------------------------------------------- 1 | // Pandoc 2.9 adds attributes on both header and div. We remove the former (to 2 | // be compatible with the behavior of Pandoc < 2.8). 3 | document.addEventListener('DOMContentLoaded', function(e) { 4 | var hs = document.querySelectorAll("div.section[class*='level'] > :first-child"); 5 | var i, h, a; 6 | for (i = 0; i < hs.length; i++) { 7 | h = hs[i]; 8 | if (!/^h[1-6]$/i.test(h.tagName)) continue; // it should be a header h1-h6 9 | a = h.attributes; 10 | while (a.length > 0) h.removeAttribute(a[0].name); 11 | } 12 | }); 13 | -------------------------------------------------------------------------------- /docs/libs/gitbook/css/plugin-table.css: -------------------------------------------------------------------------------- 1 | .book .book-body .page-wrapper .page-inner section.normal table{display:table;width:100%;border-collapse:collapse;border-spacing:0;overflow:auto}.book .book-body .page-wrapper .page-inner section.normal table td,.book .book-body .page-wrapper .page-inner section.normal table th{padding:6px 13px;border:1px solid #ddd}.book .book-body .page-wrapper .page-inner section.normal table tr{background-color:#fff;border-top:1px solid #ccc}.book .book-body .page-wrapper .page-inner section.normal table tr:nth-child(2n){background-color:#f8f8f8}.book .book-body .page-wrapper .page-inner section.normal table th{font-weight:700} 2 | -------------------------------------------------------------------------------- /data/2-6-data/datasets_frame.csv: -------------------------------------------------------------------------------- 1 | "data_nr";"data_name";"nr_instances";"nr_features";"nr_missing";"procent_missing" 2 | "1018";"ipums_la_99-small";8844;56;34843;0,07 3 | "1590";"adult";48842;13;6465;0,01 4 | "188";"eucalyptus";736;16;455;0,04 5 | "23381";"dresses-sales";500;13;955;0,15 6 | "27";"colic";368;20;1199;0,16 7 | "29";"credit-approval";690;16;67;0,01 8 | "38";"sick";3772;28;2293;0,02 9 | "4";"labor";57;17;326;0,34 10 | "40536";"SpeedDating";8378;123;18570;0,02 11 | "41278";"stem-okcupid";45907;20;139693;0,15 12 | "55";"hepatitis";155;20;167;0,05 13 | "56";"vote";435;17;392;0,05 14 | "6332";"cylinder-bands";540;34;999;0,05 15 | "944";"echoMonths";130;10;97;0,07 16 | -------------------------------------------------------------------------------- /1-7-data/repro.csv: -------------------------------------------------------------------------------- 1 | package,old.version,old.reproducibility,new.reproducibility,old.names.issues,new.names.issues,old.api.issues,new.api.issues,old.result.issues,new.result.issues 2 | VSURF,1.0.2,2,2,4,0,2,1,3,4 3 | MVN,3.8,1,3,0,0,0,7,0,0 4 | mldr,0.2.51,2,2,1,1,0,0,0,0 5 | fanplot,3.4.1,1,1,0,0,0,0,0,0 6 | Peptides,1.0.4,2,2,0,5,0,0,0,0 7 | cmvnorm,1.0-3,1,1,0,0,0,0,0,0 8 | factorplot,1.1,1,1,0,0,0,0,3,3 9 | FactoMineR,1.3,1,1,0,0,0,0,0,0 10 | gridGraphics,0.1-5,1,3,0,0,0,0,1,3 11 | phaseR,1.3,1,2,0,3,0,0,0,0 12 | betategarch,3,1,1,0,0,0,0,6,6 13 | tempdisagg,0.22,1,1,0,0,0,0,0,0 14 | mvtnorm,0.9-7,2,2,0,0,1,1,0,0 15 | brainR,1.2,1,1,0,0,0,0,0,0 16 | qmethod,1.3.0,2,2,0,0,0,0,1,1 17 | stringdist,0.7.2,1,1,0,0,1,1,1,1 18 | rotations,1.3,3,3,0,0,0,0,3,3 19 | ggmap,2.3,3,3,0,1,0,9,13,2 20 | -------------------------------------------------------------------------------- /docs/libs/gitbook/css/plugin-search.css: -------------------------------------------------------------------------------- 1 | .book .book-summary .book-search { 2 | padding: 6px; 3 | background: transparent; 4 | position: absolute; 5 | top: -50px; 6 | left: 0px; 7 | right: 0px; 8 | transition: top 0.5s ease; 9 | } 10 | .book .book-summary .book-search input, 11 | .book .book-summary .book-search input:focus, 12 | .book .book-summary .book-search input:hover { 13 | width: 100%; 14 | background: transparent; 15 | border: 1px solid #ccc; 16 | box-shadow: none; 17 | outline: none; 18 | line-height: 22px; 19 | padding: 7px 4px; 20 | color: inherit; 21 | box-sizing: border-box; 22 | } 23 | .book.with-search .book-summary .book-search { 24 | top: 0px; 25 | } 26 | .book.with-search .book-summary ul.summary { 27 | top: 50px; 28 | } 29 | .with-search .summary li[data-level] a[href*=".html#"] { 30 | display: none; 31 | } 32 | -------------------------------------------------------------------------------- /data/2-6-data/rpart.csv: -------------------------------------------------------------------------------- 1 | Dataset;Insert mean;Mice_pmm;VIM_knn;VIM_hotdeck;softImpute 2 | ipums_la_99-small;NA;NA;NA;NA;NA 3 | adult;0,902948166;0,902948166;0,902948166;0,902948166;0,902948166 4 | eucalyptus;0,881355932;0,906077348;0,792682927;0,875;0,895027624 5 | dresses-sales;NA;NA;NA;NA;NA 6 | colic;0,756756757;0,666666667;0,666666667;0,731707317;0,756756757 7 | credit-approval;0,885714286;0,885714286;0,885714286;0,885714286;0,885714286 8 | sick;0,985221675;0,983791402;0,98659139;0,988732394;0,990126939 9 | labor;0,75;0,333333333;0,666666667;0,75;0,428571429 10 | SpeedDating;1;1;1;1;1 11 | stem-okcupid;NA;NA;NA;NA;NA 12 | hepatitis;0,4;0,5;0,666666667;0,4;0,444444444 13 | vote;0,964912281;0,965517241;0,964912281;0,965517241;0,964912281 14 | cylinder-bands;0,732394366;0,722222222;0,732394366;0,732394366;0,732394366 15 | echoMonths;0,774193548;0,8125;0,774193548;0,774193548;0,774193548 16 | -------------------------------------------------------------------------------- /data/2-6-data/lda.csv: -------------------------------------------------------------------------------- 1 | Dataset;Insert mean;Mice_pmm;VIM_knn;VIM_hotdeck;softImpute 2 | ipums_la_99-small;0,285714286;0,317073171;0,290697674;0,24;0,285714286 3 | adult;0,89739403;0,898241042;0,898669797;0,898456328;0,89739403 4 | eucalyptus;0,9;0,905027933;0,893854749;0,893854749;0,906077348 5 | dresses-sales;NA;NA;NA;NA;NA 6 | colic;0,571428571;0,457142857;0,634146341;0,634146341;0,611111111 7 | credit-approval;0,874074074;NA;0,874074074;0,872180451;0,859259259 8 | sick;0,976939203;0,977003484;0,978336827;0,97632312;0,976906928 9 | labor;1;NA;0,8;1;0,857142857 10 | SpeedDating;0,994992847;0,995352163;0,994992847;0,99391771;0,994992847 11 | stem-okcupid;NA;NA;NA;NA;NA 12 | hepatitis;0,6;0,6;0,545454545;0,545454545;0,6 13 | vote;0,964912281;0,964912281;0,964912281;0,964912281;0,964912281 14 | cylinder-bands;0,647887324;NA;0,676470588;0,637681159;0,637681159 15 | echoMonths;0,864864865;NA;0,864864865;0,864864865;0,864864865 16 | -------------------------------------------------------------------------------- /1-7-data/corr.csv: -------------------------------------------------------------------------------- 1 | "reproducibility","names","api","results","api.and.results","github.stars","github.subscribers","github.contributors","github.adds","github.dels","github.commits","github.issues","github.open_issues","CI","versions" 2 | 0,-4,-1,1,0,16,4,1,4584,2814,37,5,1,1,2 3 | 2,0,7,0,7,0,2,0,0,0,0,4,1,0,12 4 | 0,0,0,0,0,17,7,2,2895,1400,113,30,3,1,6 5 | 0,0,0,0,0,0,1,1,64,21,4,0,0,0,0 6 | 0,5,0,0,0,23,3,6,61104,57711,178,30,1,0,10 7 | 0,0,0,0,0,2,1,1,1593,104,21,3,1,0,1 8 | 0,0,0,0,0,1,2,1,1540,1972,21,0,0,0,0 9 | 0,0,0,0,0,6,1,1,21213,5020,17,4,3,0,18 10 | 2,0,0,2,2,28,2,3,11161,8800,101,16,7,0,5 11 | 1,3,0,0,0,6,2,2,4459,2347,29,9,2,0,1 12 | 0,0,0,0,0,1,1,0,0,0,0,0,0,0,2 13 | 0,0,0,0,0,22,7,2,4637,4073,66,30,3,1,3 14 | 0,0,0,0,0,1,1,1,7290,4273,34,0,0,0,32 15 | 0,0,0,0,0,9,2,1,13572,6389,22,0,0,1,1 16 | 0,0,0,0,0,27,11,3,12355,10624,186,80,284,1,7 17 | 0,0,0,0,0,212,13,6,12192,7369,306,84,15,1,19 18 | 0,0,0,0,0,0,3,3,32217,30126,119,7,1,0,3 19 | 0,1,9,-11,-2,590,49,13,19336,14750,310,97,206,1,5 20 | -------------------------------------------------------------------------------- /data/2-6-data/ranger.csv: -------------------------------------------------------------------------------- 1 | Dataset;Insert mean;Mice_pmm;VIM_knn;VIM_hotdeck;softImpute 2 | ipums_la_99-small;0,184615385;0,15625;0,141732283;0,15503876;0,15625 3 | adult;0,914816997;0,915805988;0,915746127;0,915681536;0,915209847 4 | eucalyptus;0,908108108;0,908108108;0,918032787;0,908108108;0,902173913 5 | dresses-sales;0,757575758;0,715447154;0,723076923;0,723076923;0,763358779 6 | colic;0,666666667;0,6875;0,764705882;0,666666667;0,611111111 7 | credit-approval;0,881118881;NA;0,881118881;0,887323944;0,881118881 8 | sick;0,985974755;0,985283812;0,986666667;0,985283812;0,985974755 9 | labor;0,857142857;NA;0,857142857;0,857142857;0,857142857 10 | SpeedDating;0,995732575;0,995378599;0,996441281;0,995378599;0,995732575 11 | stem-okcupid;0,884918881;0,885217391;0,889460816;0,884813185;0,883368102 12 | hepatitis;0,666666667;0,666666667;0,75;0,5;0,444444444 13 | vote;0,974358974;0,982758621;0,973913043;0,965517241;0,974358974 14 | cylinder-bands;0,776119403;NA;0,794117647;0,8;0,764705882 15 | echoMonths;0,8125;NA;0,75;0,8125;0,787878788 16 | -------------------------------------------------------------------------------- /data/2-6-data/nb.csv: -------------------------------------------------------------------------------- 1 | Dataset;Insert mean;Mice_pmm;VIM_knn;VIM_hotdeck;softImpute 2 | ipums_la_99-small;0,124716553;0,125930166;0,126364159;0,123873874;0,124716553 3 | adult;0,886622751;0,887071207;0,887224726;0,887184688;0,886622751 4 | eucalyptus;0,863387978;0,87431694;0,886486486;0,87431694;0,868131868 5 | dresses-sales;0,672;0,666666667;0,698412698;0,64516129;0,704 6 | colic;0,518518519;0,465116279;0,528301887;0,565217391;0,528301887 7 | credit-approval;0,787096774;0,787096774;0,787096774;0,787096774;0,787096774 8 | sick;0,947521866;0,945215486;0,947521866;0,945215486;0,943065693 9 | labor;0,666666667;0,8;0,428571429;1;1 10 | SpeedDating;0,886345699;0,885025682;0,886874261;0,887573964;0,886345699 11 | stem-okcupid;0,844271413;0,857510671;0,843214943;0,857085048;0,844330112 12 | hepatitis;0,6;0,6;0,6;0,545454545;0,6 13 | vote;0,915254237;0,915254237;0,923076923;0,915254237;0,915254237 14 | cylinder-bands;0,564705882;0,384615385;0,571428571;0,542857143;0,551724138 15 | echoMonths;0,864864865;0,823529412;0,8;0,787878788;0,833333333 16 | -------------------------------------------------------------------------------- /data/2-6-data/kknn.csv: -------------------------------------------------------------------------------- 1 | Dataset;Insert mean;Mice_pmm;VIM_knn;VIM_hotdeck;softImpute 2 | ipums_la_99-small;0,220858896;0,201257862;0,242424242;0,209876543;0,220858896 3 | adult;0,88715382;0,888652671;0,888593105;0,889863159;0,88715382 4 | eucalyptus;0,857142857;0,852272727;0,852272727;0,857142857;0,857142857 5 | dresses-sales;0,742138365;0,742138365;0,742138365;0,742138365;0,713286713 6 | colic;0,565217391;0,571428571;0,604651163;0,577777778;0,510638298 7 | credit-approval;0,85106383;NA;0,85106383;0,85106383;0,842857143 8 | sick;0,979762736;0,978397213;0,979790941;0,978427279;0,978427279 9 | labor;0,666666667;NA;0,857142857;0,8;1 10 | SpeedDating;0,914166085;0,915620642;0,915998606;0,914642609;0,91454482 11 | stem-okcupid;0,883104245;0,883104245;0,883104245;0,883104245;0,883104245 12 | hepatitis;0,666666667;0,857142857;0,666666667;0,666666667;0,666666667 13 | vote;0,949152542;0,956521739;0,948275862;0,957264957;0,949152542 14 | cylinder-bands;0,763157895;NA;0,684931507;0,676056338;0,783783784 15 | echoMonths;0,777777778;NA;0,764705882;0,787878788;0,777777778 16 | -------------------------------------------------------------------------------- /docs/libs/gitbook/js/plugin-clipboard.js: -------------------------------------------------------------------------------- 1 | gitbook.require(["gitbook", "jQuery"], function(gitbook, $) { 2 | 3 | var copyButton = ''; 4 | var clipboard; 5 | 6 | gitbook.events.bind("page.change", function() { 7 | 8 | if (!ClipboardJS.isSupported()) return; 9 | 10 | // the page.change event is thrown twice: before and after the page changes 11 | if (clipboard) { 12 | // clipboard is already defined 13 | // we can deduct that we are before page changes 14 | clipboard.destroy(); // destroy the previous events listeners 15 | clipboard = undefined; // reset the clipboard object 16 | return; 17 | } 18 | 19 | $(copyButton).prependTo("div.sourceCode"); 20 | 21 | clipboard = new ClipboardJS(".copy-to-clipboard-button", { 22 | text: function(trigger) { 23 | return trigger.parentNode.textContent; 24 | } 25 | }); 26 | 27 | }); 28 | 29 | }); 30 | -------------------------------------------------------------------------------- /_output.yml: -------------------------------------------------------------------------------- 1 | bookdown::gitbook: 2 | dev: svglite 3 | css: css/style.css 4 | split_by: section 5 | config: 6 | toc: 7 | collapse: section 8 | before: | 9 |