View source: R/plot_residual_boxplot.R
plot_residual_boxplot | R Documentation |
A boxplot of residuals.
plot_residual_boxplot(object, ...)
plotResidualBoxplot(object, ...)
object |
An object of class |
... |
Other |
A ggplot object.
plot_residual
dragons <- DALEX::dragons[1:100, ]
# fit a model
model_lm <- lm(life_length ~ ., data = dragons)
lm_audit <- audit(model_lm, data = dragons, y = dragons$life_length)
# validate a model with auditor
mr_lm <- model_residual(lm_audit)
# plot results
plot_residual_boxplot(mr_lm)
plot(mr_lm, type = "residual_boxplot")
library(randomForest)
model_rf <- randomForest(life_length~., data = dragons)
rf_audit <- audit(model_rf, data = dragons, y = dragons$life_length)
mr_rf <- model_residual(rf_audit)
plot_residual_boxplot(mr_lm, mr_rf)
plot(mr_lm, mr_rf)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.