View source: R/iclogcondist_UMLE.R
ic_UMLE | R Documentation |
This function computes the unconstrained maximum likelihood estimate (UMLE) for interval-censored data.
It utilizes the non-parametric MLE from the ic_np
function in the icenReg
package as a starting point
and prepares key components such as cumulative probabilities, log-transformed values, and knot information.
ic_UMLE(X)
X |
A matrix with two columns, where each row represents an interval (L, R] for interval-censored data.
|
The ic_np
function from the icenReg
package is used to compute the non-parametric MLE for
interval-censored data. This provides initial estimates of probabilities (p_hat
) and jump points
(knot
) in the cumulative distribution function. These are then processed to compute the
cumulative probabilities (F_hat
) and log-transformed values (phi_hat
) at unique time points.
A list containing:
est |
A list with |
knot_info |
A list with |
neg_log_likelihood |
The negative log-likelihood of the MLE fit. |
weight |
Vector of weights corresponding to each interval in the data. |
X |
The original interval-censored data matrix input. |
Anderson-Bergman, C. (2016) An efficient implementation of the EMICM algorithm for the interval censored NPMLE Journal of Computational and Graphical Statistics.
data(lgnm)
result <- ic_UMLE(X = lgnm)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.