Learn R Programming

ReliaGrowR (version 0.4)

print.rga_predict: 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 rga_predict
print(x, ...)

Value

Invisibly returns the input object.

Arguments

x

An object of class rga_predict.

...

Additional arguments (not used).

See Also

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

Examples

Run this code
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)

Run the code above in your browser using DataLab