| mle_type2_hybrid | R Documentation |
Maximum Likelihood Estimation under Type-II Hybrid Censoring
mle_type2_hybrid(
data,
pdf,
cdf,
init_par,
method = "BFGS",
lower = -Inf,
upper = Inf
)
data |
Object of class |
pdf |
Parametric density function. |
cdf |
Parametric CDF function. |
init_par |
Initial parameter values. |
method |
Maximization method ("NR", "BFGS", "BFGSR", "BHHH", "SANN", "CG", "NM"). |
lower |
Lower parameter bounds. |
upper |
Upper parameter bounds. |
S3 object of class mle_fit.
dat <- 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
)
mle_type2_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), method = "BFGS"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.