Nothing
ci.epoisCensored.profile.likelihood <-
function (x, censored, censoring.side, lambda.mle, ci.type, conf.level,
LCL.start, UCL.start)
{
loglik.at.mle <- loglikCensored(theta = lambda.mle, x = x,
censored = censored, censoring.side = censoring.side,
distribution = "pois")
fcn <- function(CL, loglik.at.mle, x, censored, censoring.side,
conf.level) {
(2 * (loglik.at.mle - loglikCensored(theta = CL, x = x,
censored = censored, censoring.side = censoring.side,
distribution = "pois")) - qchisq(conf.level, df = 1))^2
}
switch(ci.type, `two-sided` = {
LCL <- nlminb(start = LCL.start, objective = fcn, lower = .Machine$double.eps,
upper = lambda.mle, loglik.at.mle = loglik.at.mle,
x = x, censored = censored, censoring.side = censoring.side,
conf.level = conf.level)$par
UCL <- nlminb(start = UCL.start, objective = fcn, lower = lambda.mle,
loglik.at.mle = loglik.at.mle, x = x, censored = censored,
censoring.side = censoring.side, conf.level = conf.level)$par
}, lower = {
LCL <- nlminb(start = LCL.start, objective = fcn, lower = .Machine$double.eps,
upper = lambda.mle, loglik.at.mle = loglik.at.mle,
x = x, censored = censored, censoring.side = censoring.side,
conf.level = 1 - 2 * (1 - conf.level))$par
UCL <- Inf
}, upper = {
LCL <- 0
UCL <- nlminb(start = UCL.start, objective = fcn, lower = lambda.mle,
loglik.at.mle = loglik.at.mle, x = x, censored = censored,
censoring.side = censoring.side, conf.level = 1 -
2 * (1 - conf.level))$par
})
ci.limits <- c(LCL, UCL)
names(ci.limits) <- c("LCL", "UCL")
interval <- list(name = "Confidence", parameter = "lambda",
limits = ci.limits, type = ci.type, method = "Profile Likelihood",
conf.level = conf.level)
oldClass(interval) <- "intervalEstimate"
interval
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.