Learn R Programming

MachineShop (version 1.3.0)

lift: Model Lift

Description

Calculate lift estimates from observed and predicted responses.

Usage

Lift(...)

lift(x, y = NULL, na.rm = TRUE, ...)

Arguments

...

named or unnamed lift output to combine together with the Lift constructor.

x

observed responses or Resamples object of observed and predicted responses.

y

predicted responses.

na.rm

logical indicating whether to remove observed or predicted responses that are NA when calculating metrics.

Value

Lift class object that inherits from Curves.

See Also

response, predict, resample, plot

Examples

Run this code
# NOT RUN {
library(MASS)

res <- resample(type ~ ., data = Pima.tr, model = GBMModel)
lf <- lift(res)
plot(lf)

# }

Run the code above in your browser using DataLab