View source: R/regress_utils.R
predict.uRegress | R Documentation |
uRegress
objectsProduces prediction intervals for objects of class uRegress
.
## S3 method for class 'uRegress'
predict(object, interval = "prediction", level = 0.95, ...)
object |
an object of class |
interval |
Type of interval calculation |
level |
Tolerance/confidence level |
... |
other arguments to pass to the appropriate predict function for
the class of |
Returns a matrix with the fitted value and prediction interval for the entered X.
regress
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.