powered by
This function converts Weibull data (failure and suspension times) into a format suitable for reliability growth analysis (RGA).
weibull_to_rga(failures, suspensions = NULL)
A data frame with times and failure counts suitable for reliability growth analysis.
A vector of failure times.
A vector of suspension (censoring) times.
failures <- c(100, 200, 200, 400) suspensions <- c(250, 350, 450) result <- weibull_to_rga(failures, suspensions) print(result)
Run the code above in your browser using DataLab