Description Usage Arguments Value Examples
Perform the generalized KS test for the estimated software reliability models with Monte-Carlo testing
1 2 3 4 5 6 7 8 9 | gks.srm.test.mc2(
obj,
alternative = c("two.sided", "less", "greater"),
b = NA,
alpha = 0.01,
cv = 0.1,
lhc = FALSE,
seed = NA
)
|
obj |
An object of an estimated result by Rsrat |
alternative |
A string indicates the alternative hypothesis and must be one of "two.sided" (default), "less", or "greater". |
b |
An integer for the number of resamples. If it is NULL, the number of resamples is determined from the significant level and the coefficient variation. |
alpha |
A value of the significant level which is used to determine the number
of resamples. The default is 0.01. If |
cv |
A value of the coefficient variation which is used to determine the number
of resamples. The default is 0.1. If |
lhc |
A logical indicates resamples are drawn by Latin hypercude. |
seed |
An integer for the seed of random numbers. If it is NULL, the seed is not set. |
A list with components;
statistic |
A value of the test statistic. |
p.value |
A value of the p-value of the test. |
alternative |
A string of the alternative hypothesis. |
b |
An integer for the number of resamples. |
alpha |
A value of the significant level. |
cv |
A value of the coefficient variation. |
lhc |
A logical indicates resamples are drawn by Latin hypercude. |
seed |
An integer for the seed of random numbers. |
1 2 3 | data(dacs)
result <- fit.srm.nhpp(fault=sys1g[1:30], srm.name=c("exp"))
gks.srm.test.mc2(result)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.