From 27d7e8776703cd09d4e770506a288f10b5a74fa1 Mon Sep 17 00:00:00 2001 From: Lars Kotthoff Date: Fri, 8 Nov 2024 14:28:17 -0700 Subject: [PATCH] remove output chunk attr, which doesn't seem to be supported anymore --- book/chapters/chapter12/model_interpretation.qmd | 4 ---- 1 file changed, 4 deletions(-) diff --git a/book/chapters/chapter12/model_interpretation.qmd b/book/chapters/chapter12/model_interpretation.qmd index e6f343d9c..eb93d71d6 100644 --- a/book/chapters/chapter12/model_interpretation.qmd +++ b/book/chapters/chapter12/model_interpretation.qmd @@ -102,7 +102,6 @@ However, the number of repetitions should be increased if you want to obtain use ::: ```{r iml-007} -#| output: false #| cache: false importance = FeatureImp$new(predictor, loss = "ce", n.repetitions = 100) importance$plot() @@ -498,7 +497,6 @@ perf_credit ``` ```{r} -#| output: false #| cache: false old_theme = set_theme_dalex("ema") plot(perf_credit, geom = "roc") @@ -535,7 +533,6 @@ head(gbm_effect) ``` ```{r} -#| output: false #| cache: false plot(gbm_effect, show_boxplots = FALSE) ``` @@ -569,7 +566,6 @@ gbm_profiles ``` ```{r} -#| output: false #| cache: false plot(gbm_profiles) + theme(legend.position = "top") +