From 92744d4e85446b99a113c9dad9ecf29cf531c082 Mon Sep 17 00:00:00 2001 From: Jon Harmon Date: Sat, 22 Jun 2024 10:20:39 -0500 Subject: [PATCH] Rename duplicate chunks. --- 09_local-interpretable-model-agnostic-explanations-lime.Rmd | 2 +- 17_partial-dependence-profiles.Rmd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/09_local-interpretable-model-agnostic-explanations-lime.Rmd b/09_local-interpretable-model-agnostic-explanations-lime.Rmd index 528d3b0..ed9ad34 100644 --- a/09_local-interpretable-model-agnostic-explanations-lime.Rmd +++ b/09_local-interpretable-model-agnostic-explanations-lime.Rmd @@ -168,7 +168,7 @@ Solution: * Examples below use K-LASSO for glass-box model -```{r load-data, warning=FALSE,message=FALSE} +```{r 09-load-data, warning=FALSE,message=FALSE} # core libraries library(randomForest) library(DALEX) diff --git a/17_partial-dependence-profiles.Rmd b/17_partial-dependence-profiles.Rmd index 0236d4f..a5487c8 100644 --- a/17_partial-dependence-profiles.Rmd +++ b/17_partial-dependence-profiles.Rmd @@ -134,7 +134,7 @@ Below we compare the PDP output for from two predictive models: a basic linear r We use the titanic dataset and a random forest model. -```{r load-data, warning=FALSE, message=FALSE, results='hide'} +```{r 17-load-data, warning=FALSE, message=FALSE, results='hide'} library("DALEX") library("randomForest") titanic_imputed <- archivist::aread("pbiecek/models/27e5c")