Prints a formatted table of forecast MTBF with confidence bounds.
Usage
# S3 method for class 'duane_predict'
print(x, ...)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))
#> Warning: Some 'times' values are <= the maximum observed cumulative time. Hindcasting is allowed but may not be meaningful.
print(fc)
#> Duane MTBF Forecast
#> --------------------
#> Time MTBF Lower (95%) Upper (95%)
#> 1000 149.19 120.39 184.87
#> 2000 171.53 126.35 232.86
