print.rga_predict: Print Method for rga_predict Objects

View source: R/rga.R

print.rga_predictR Documentation

Print Method for rga_predict Objects

Description

Prints a formatted table of forecast cumulative failures with confidence bounds for an rga_predict object.

Usage

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

Arguments

x

An object of class rga_predict.

...

Additional arguments (not used).

Value

Invisibly returns the input object.

See Also

Other Reliability Growth Analysis: overlay_rga(), plot.rga(), plot.rga_predict(), predict_rga(), print.rga(), rga()

Examples

times <- c(100, 200, 300, 400, 500)
failures <- c(1, 2, 1, 3, 2)
fit <- rga(times, failures)
fc <- predict_rga(fit, times = c(1500, 2000))
print(fc)

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