├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── test-coverage.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── bee.R ├── collapse_shap.R ├── collect_axes.R ├── data.R ├── extractors.R ├── methods.R ├── potential_interactions.R ├── shapviz-package.R ├── shapviz.R ├── sv_dependence.R ├── sv_dependence2D.R ├── sv_force.R ├── sv_importance.R ├── sv_interaction.R └── sv_waterfall.R ├── README.md ├── cran-comments.md ├── data └── miami.rda ├── logo.png ├── man ├── c.shapviz.Rd ├── collapse_shap.Rd ├── dim.shapviz.Rd ├── dimnames-set-.shapviz.Rd ├── dimnames.shapviz.Rd ├── extractors.Rd ├── figures │ ├── README-bee.svg │ ├── README-dep.png │ ├── README-force.svg │ ├── README-imp.svg │ ├── README-waterfall.svg │ ├── VIGNETTE-dep-ranger.png │ ├── VIGNETTE-dep.png │ ├── VIGNETTE-tidy-class-lgb-dep.png │ ├── VIGNETTE-tidy-class-lgb-imp.png │ ├── VIGNETTE-tidy-class-normal-dep1.png │ ├── VIGNETTE-tidy-class-normal-dep2.png │ ├── VIGNETTE-tidy-class-normal-imp.png │ ├── VIGNETTE-tidy-class-xgb-dep.png │ ├── VIGNETTE-tidy-class-xgb-imp.png │ ├── VIGNETTE-tidy-lgb-dep.png │ ├── VIGNETTE-tidy-lgb-imp.png │ ├── VIGNETTE-tidy-rf-dep.png │ ├── VIGNETTE-tidy-rf-imp.png │ ├── VIGNETTE-tidy-xgb-dep.png │ ├── VIGNETTE-tidy-xgb-imp.png │ ├── VIGNETTE-tidy-xgb-inter.png │ └── logo.png ├── format_max.Rd ├── is.mshapviz.Rd ├── is.shapviz.Rd ├── miami.Rd ├── mshapviz.Rd ├── plus-.shapviz.Rd ├── potential_interactions.Rd ├── print.mshapviz.Rd ├── print.shapviz.Rd ├── rbind.shapviz.Rd ├── shapviz-package.Rd ├── shapviz.Rd ├── split.shapviz.Rd ├── sub-.shapviz.Rd ├── summary.shapviz.Rd ├── sv_dependence.Rd ├── sv_dependence2D.Rd ├── sv_force.Rd ├── sv_importance.Rd ├── sv_interaction.Rd └── sv_waterfall.Rd ├── packaging.R ├── pkgdown └── _pkgdown.yml ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── failures.md └── problems.md ├── shapviz.Rproj ├── tests ├── testthat.R └── testthat │ ├── test-bee.R │ ├── test-collapse_shap.R │ ├── test-helpers.R │ ├── test-interface.R │ ├── test-plots-mshapviz.R │ ├── test-plots-shapviz.R │ └── test-potential_interactions.R └── vignettes ├── .gitignore ├── basic_use.Rmd ├── biblio.bib ├── geographic.Rmd ├── multiple_output.Rmd └── tidymodels.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/bee.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/bee.R -------------------------------------------------------------------------------- /R/collapse_shap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/collapse_shap.R -------------------------------------------------------------------------------- /R/collect_axes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/collect_axes.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/data.R -------------------------------------------------------------------------------- /R/extractors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/extractors.R -------------------------------------------------------------------------------- /R/methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/methods.R -------------------------------------------------------------------------------- /R/potential_interactions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/potential_interactions.R -------------------------------------------------------------------------------- /R/shapviz-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/shapviz-package.R -------------------------------------------------------------------------------- /R/shapviz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/shapviz.R -------------------------------------------------------------------------------- /R/sv_dependence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/sv_dependence.R -------------------------------------------------------------------------------- /R/sv_dependence2D.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/sv_dependence2D.R -------------------------------------------------------------------------------- /R/sv_force.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/sv_force.R -------------------------------------------------------------------------------- /R/sv_importance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/sv_importance.R -------------------------------------------------------------------------------- /R/sv_interaction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/sv_interaction.R -------------------------------------------------------------------------------- /R/sv_waterfall.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/R/sv_waterfall.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/miami.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/data/miami.rda -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/logo.png -------------------------------------------------------------------------------- /man/c.shapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/c.shapviz.Rd -------------------------------------------------------------------------------- /man/collapse_shap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/collapse_shap.Rd -------------------------------------------------------------------------------- /man/dim.shapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/dim.shapviz.Rd -------------------------------------------------------------------------------- /man/dimnames-set-.shapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/dimnames-set-.shapviz.Rd -------------------------------------------------------------------------------- /man/dimnames.shapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/dimnames.shapviz.Rd -------------------------------------------------------------------------------- /man/extractors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/extractors.Rd -------------------------------------------------------------------------------- /man/figures/README-bee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/README-bee.svg -------------------------------------------------------------------------------- /man/figures/README-dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/README-dep.png -------------------------------------------------------------------------------- /man/figures/README-force.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/README-force.svg -------------------------------------------------------------------------------- /man/figures/README-imp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/README-imp.svg -------------------------------------------------------------------------------- /man/figures/README-waterfall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/README-waterfall.svg -------------------------------------------------------------------------------- /man/figures/VIGNETTE-dep-ranger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-dep-ranger.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-dep.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-class-lgb-dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-class-lgb-dep.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-class-lgb-imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-class-lgb-imp.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-class-normal-dep1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-class-normal-dep1.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-class-normal-dep2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-class-normal-dep2.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-class-normal-imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-class-normal-imp.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-class-xgb-dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-class-xgb-dep.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-class-xgb-imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-class-xgb-imp.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-lgb-dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-lgb-dep.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-lgb-imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-lgb-imp.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-rf-dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-rf-dep.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-rf-imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-rf-imp.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-xgb-dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-xgb-dep.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-xgb-imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-xgb-imp.png -------------------------------------------------------------------------------- /man/figures/VIGNETTE-tidy-xgb-inter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/VIGNETTE-tidy-xgb-inter.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/format_max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/format_max.Rd -------------------------------------------------------------------------------- /man/is.mshapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/is.mshapviz.Rd -------------------------------------------------------------------------------- /man/is.shapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/is.shapviz.Rd -------------------------------------------------------------------------------- /man/miami.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/miami.Rd -------------------------------------------------------------------------------- /man/mshapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/mshapviz.Rd -------------------------------------------------------------------------------- /man/plus-.shapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/plus-.shapviz.Rd -------------------------------------------------------------------------------- /man/potential_interactions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/potential_interactions.Rd -------------------------------------------------------------------------------- /man/print.mshapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/print.mshapviz.Rd -------------------------------------------------------------------------------- /man/print.shapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/print.shapviz.Rd -------------------------------------------------------------------------------- /man/rbind.shapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/rbind.shapviz.Rd -------------------------------------------------------------------------------- /man/shapviz-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/shapviz-package.Rd -------------------------------------------------------------------------------- /man/shapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/shapviz.Rd -------------------------------------------------------------------------------- /man/split.shapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/split.shapviz.Rd -------------------------------------------------------------------------------- /man/sub-.shapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/sub-.shapviz.Rd -------------------------------------------------------------------------------- /man/summary.shapviz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/summary.shapviz.Rd -------------------------------------------------------------------------------- /man/sv_dependence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/sv_dependence.Rd -------------------------------------------------------------------------------- /man/sv_dependence2D.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/sv_dependence2D.Rd -------------------------------------------------------------------------------- /man/sv_force.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/sv_force.Rd -------------------------------------------------------------------------------- /man/sv_importance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/sv_importance.Rd -------------------------------------------------------------------------------- /man/sv_interaction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/sv_interaction.Rd -------------------------------------------------------------------------------- /man/sv_waterfall.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/man/sv_waterfall.Rd -------------------------------------------------------------------------------- /packaging.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/packaging.R -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /shapviz.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/shapviz.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-bee.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/tests/testthat/test-bee.R -------------------------------------------------------------------------------- /tests/testthat/test-collapse_shap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/tests/testthat/test-collapse_shap.R -------------------------------------------------------------------------------- /tests/testthat/test-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/tests/testthat/test-helpers.R -------------------------------------------------------------------------------- /tests/testthat/test-interface.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/tests/testthat/test-interface.R -------------------------------------------------------------------------------- /tests/testthat/test-plots-mshapviz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/tests/testthat/test-plots-mshapviz.R -------------------------------------------------------------------------------- /tests/testthat/test-plots-shapviz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/tests/testthat/test-plots-shapviz.R -------------------------------------------------------------------------------- /tests/testthat/test-potential_interactions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/tests/testthat/test-potential_interactions.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/basic_use.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/vignettes/basic_use.Rmd -------------------------------------------------------------------------------- /vignettes/biblio.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/vignettes/biblio.bib -------------------------------------------------------------------------------- /vignettes/geographic.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/vignettes/geographic.Rmd -------------------------------------------------------------------------------- /vignettes/multiple_output.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/vignettes/multiple_output.Rmd -------------------------------------------------------------------------------- /vignettes/tidymodels.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ModelOriented/shapviz/HEAD/vignettes/tidymodels.Rmd --------------------------------------------------------------------------------