lift {MachineShop} | R Documentation |
Model Lift Curves
Description
Calculate lift curves from observed and predicted responses.
Usage
lift(x, y = NULL, weights = NULL, na.rm = TRUE, ...)
Arguments
x |
observed responses or resample result containing observed and predicted responses. |
y |
predicted responses if not contained in |
weights |
numeric vector of non-negative
case weights for the observed |
na.rm |
logical indicating whether to remove observed or predicted
responses that are |
... |
arguments passed to other methods. |
Value
LiftCurve
class object that inherits from
PerformanceCurve
.
See Also
Examples
## Requires prior installation of suggested package gbm to run
data(Pima.tr, package = "MASS")
res <- resample(type ~ ., data = Pima.tr, model = GBMModel)
lf <- lift(res)
plot(lf)
[Package MachineShop version 3.7.0 Index]