| gen_type2_hybrid | R Documentation |
Generate Data under Type-II Hybrid Censoring Scheme
gen_type2_hybrid(pdf, cdf, lower = 0, upper = Inf, n, r, T_star, seed = NULL)
pdf |
Probability density function. |
cdf |
Cumulative distribution function. |
lower |
Lower bound of the support of the distribution. |
upper |
Upper bound of the support of the distribution. |
n |
Total sample size. |
r |
Minimum required number of failures. |
T_star |
Target observation time limit. |
seed |
Optional integer random seed for reproducibility. |
A list containing observed failure times, censor statuses, and termination details.
gen_type2_hybrid(
pdf = function(x) dexp(x, rate = 1),
cdf = function(x) pexp(x, rate = 1),
lower = 0, upper = 10, n = 20, r = 10,
T_star = 1.0, seed = 123
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.