| mle_gen_prog_hybrid | R Documentation |
Maximum Likelihood Estimation under Generalized Progressive Hybrid Censoring
mle_gen_prog_hybrid(
data,
pdf,
cdf,
init_par,
R_plan = NULL,
method = "BFGS",
lower = -Inf,
upper = Inf
)
data |
Object of class |
pdf |
Density function. |
cdf |
CDF function. |
init_par |
Initial parameter values. |
R_plan |
Progressive removal vector. |
method |
Maximization algorithm. |
lower |
Lower parameter bound. |
upper |
Upper parameter bound. |
S3 object of class mle_fit.
dat <- gen_gen_prog_hybrid(
pdf = function(x) dexp(x, rate = 1),
cdf = function(x) pexp(x, rate = 1),
lower = 0, upper = 10, n = 20, m = 10, k = 5,
T_star = 1.2, R_plan = rep(1, 10), seed = 123
)
mle_gen_prog_hybrid(
data = dat,
pdf = function(x, theta) dexp(x, rate = theta[1]),
cdf = function(x, theta) pexp(x, rate = theta[1]),
init_par = c(0.8), R_plan = rep(1, 10), method = "BFGS"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.