safe_predict.loess: Safe predictions from a loess object

Description Usage Arguments Value Examples

Description

Safe predictions from a loess object

Usage

1
2
3
## S3 method for class 'loess'
safe_predict(object, new_data, type = c("response",
  "conf_int", "pred_int"), ..., std_error = FALSE, level = 0.95)

Arguments

object

A loess object returned from a call to stats::loess().

new_data

TODO

type

What kind of predictions to return. Options are:

  • "response" (default): Standard predictions from LOESS regression.

  • "conf_int": Fitted values plus a confidence interval for the fit.

  • "pred_int": Predictions with accompanying prediction interval.

...

Unused. safe_predict() checks that all arguments in ... are evaluated via the ellipsis package. The idea is to prevent silent errors when arguments are mispelled. This feature is experimental and feedback is welcome.

std_error

Logical indicating whether or not calculate standard errors for the fit at each point. Not available for all models, and can be computationally expensive to compute. The standard error is always the standard error for the mean, and never the standard error for predictions. Standard errors are returned in a column called .std_error. Defaults to FALSE.

level

A number strictly between 0 and 1 to use as the confidence level when calculating confidence and prediction intervals. Setting level = 0.90 correspondings to a 90 percent confidence interval. Ignored except when type = "conf_int" or type = "pred_int". Defaults to 0.95.

Value

A tibble::tibble() with one row for each row of new_data. Predictions for observations with missing data will be NA. Returned tibble has different columns depending on type:

If you request standard errors with std_error = TRUE, an additional column .std_error.

For interval predictions, the tibble has additional attributes level and interval. The level is the same as the level argument and is between 0 and 1. interval is either "confidence" or "prediction". Some models may also set a method attribute to detail the method used to calculate the intervals.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
fit <- loess(mpg ~ wt, mtcars)
safe_predict(fit, mtcars)
safe_predict(fit, mtcars, std_error = TRUE)

# the default behavior of loess() is return NA for values
# outside the range of the training data:

safe_predict(fit, data.frame(wt = 1:10))

# to enable extrapolation, use:

fit2 <- loess(
  mpg ~ wt,
  mtcars,
   control = loess.control(surface = "direct")
)

safe_predict(fit2, data.frame(wt = 1:10), type = "pred_int", level = 0.9)

alexpghayes/safepredict documentation built on May 29, 2019, 11:02 p.m.