Learn R Programming

auditor (version 0.3.0)

plotResidualDensity: Residual Density Plot

Description

Density of model residuals.

Usage

plotResidualDensity(object, ..., split.var = TRUE, variable = NULL)

Arguments

object

An object of class ModelAudit.

...

Other modelAudit objects to be plotted together.

split.var

Logical. Indicates whenever plot should be splitted by variable.

variable

variable name o split. Optional. Should be provided only for modelAudit object.

Value

ggplot object

See Also

plot.modelAudit

Examples

Run this code
# NOT RUN {
library(car)
lm_model <- lm(prestige~education + women + income, data = Prestige)
lm_au <- audit(lm_model, data = Prestige, y = Prestige$prestige)
plotResidualDensity(lm_au)

library(randomForest)
rf_model <- randomForest(prestige~education + women + income, data = Prestige)
rf_au <- audit(rf_model, data = Prestige, y = Prestige$prestige)
plotResidualDensity(lm_au, rf_au)

# }

Run the code above in your browser using DataLab