To install the release version of ReliaGrowR, use:
install_packages('ReliaGrowR')
You can install the development version of ReliaGrowR like so:
::install_github('paulgovan/ReliaGrowR') devtools
Here is a basic example of Reliability Growth Analysis:
First, load the package:
library(ReliaGrowR)
Next, set up some cumulative time and failure data:
<- c(100, 200, 300, 400, 500)
times <- c(1, 2, 1, 3, 2) failures
Then run the rga and plot the results:
<- rga(times, failures)
result plot_rga(result)
Please note that the ReliaGrowR project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.