Learn R Programming

rigr (version 1.0.4)

predict.uRegress: Prediction Intervals for uRegress objects

Description

Produces prediction intervals for objects of class uRegress.

Usage

# S3 method for uRegress
predict(object, interval = "prediction", level = 0.95, ...)

Value

Returns a matrix with the fitted value and prediction interval for the entered X.

Arguments

object

an object of class uRegress.

interval

Type of interval calculation

level

Tolerance/confidence level

...

other arguments to pass to the appropriate predict function for the class of object$fit. See predict.lm, or predict.glm for more details.

See Also

regress

Examples

Run this code

# Loading required libraries
library(survival)
library(sandwich)

# Reading in a dataset
data(mri)

# Linear regression of LDL on age (with robust SE by default)
testReg <- regress ("mean", ldl~age, data = mri)

# 95% Prediction Interval for age 50
predict(testReg)

Run the code above in your browser using DataLab