print.duane_predict: Print Method for duane_predict Objects

View source: R/duane.R

print.duane_predictR Documentation

Print Method for duane_predict Objects

Description

Prints a formatted table of forecast MTBF with confidence bounds.

Usage

## S3 method for class 'duane_predict'
print(x, ...)

Arguments

x

An object of class duane_predict.

...

Additional arguments (not used).

Value

Invisibly returns the input object.

See Also

Other Duane functions: duane(), plot.duane(), plot.duane_predict(), predict_duane(), print.duane()

Examples

times <- c(100, 200, 300, 400, 500)
failures <- c(1, 2, 1, 3, 2)
fit <- duane(times, failures)
fc <- predict_duane(fit, times = c(1000, 2000))
print(fc)

ReliaGrowR documentation built on May 22, 2026, 5:07 p.m.