# NOT RUN {
fit_full <- lm(Sepal.Length ~ ., data = iris)
fit_part <- lm(Sepal.Length ~ Petal.Length, data = iris)
mod_full <- flashlight(model = fit_full, label = "full", data = iris, y = "Sepal.Length")
mod_part <- flashlight(model = fit_part, label = "part", data = iris, y = "Sepal.Length")
mods <- multiflashlight(list(mod_full, mod_part))
eff <- light_effects(mods, v = "Species")
eff <- light_recode(eff, what = "type_name",
levels = c("response", "predicted", "partial dependence"),
labels = c("Observed", "Fitted", "Effect"))
plot(eff)
perf <- light_performance(mods)
perf <- light_recode(perf, what = "label_name",
levels = c("part", "full"), labels = c("simple", "complex"))
plot(perf)
# }
Run the code above in your browser using DataLab