add_prediction {insurancerating} | R Documentation |
Add predictions to a data frame
Description
Add model predictions and confidence bounds to a data frame.
Usage
add_prediction(data, ..., var = NULL, conf_int = FALSE, alpha = 0.1)
Arguments
data |
a data frame of new data. |
... |
one or more objects of class |
var |
the name of the output column(s), defaults to NULL |
conf_int |
determines whether confidence intervals will be shown.
Defaults to |
alpha |
a real number between 0 and 1. Controls the confidence level of the interval estimates (defaults to 0.10, representing 90 percent confidence interval). |
Value
data.frame
Examples
mod1 <- glm(nclaims ~ age_policyholder, data = MTPL,
offset = log(exposure), family = poisson())
add_prediction(MTPL, mod1)
# Include confidence bounds
add_prediction(MTPL, mod1, conf_int = TRUE)
[Package insurancerating version 0.7.4 Index]