rga | R Documentation |
Reliability Growth Analysis.
rga(
times,
failures,
model_type = "Crow-AMSAA",
breakpoints = NULL,
conf_level = 0.95
)
times |
A vector of cumulative times at which failures occurred. |
failures |
A vector of the number of failures at each corresponding time in times. |
model_type |
The model type. Either |
breakpoints |
An optional vector of breakpoints for the |
conf_level |
The desired confidence level, which defaults to 95%. |
The function returns an object of class rga
that contains the results for the model.
times <- c(100, 200, 300, 400, 500)
failures <- c(1, 2, 1, 3, 2)
result <- rga(times, failures)
print(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.