You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is a basic example of Reliability Growth Analysis:
56
-
57
-
First, load the package:
58
+
Here is a basic example of Reliability Growth Analysis. First, load the package.
58
59
```{r}
59
60
library(ReliaGrowR)
60
61
```
61
62
62
-
Next, set up some cumulative time and failure data:
63
+
Next, suppose a machine has failed at the following times with the corresponding number of failures.
63
64
```{r}
64
65
times <- c(100, 200, 300, 400, 500)
65
66
failures <- c(1, 2, 1, 3, 2)
66
67
```
67
68
68
-
Then run the rgaand plot the results:
69
+
To perform RGA, use the `rga` function and plot the results. The plot displays the cumulative failures over time along with the fitted reliability growth model.
Please note that the ReliaGrowR project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.
0 commit comments