| simulate_mle_performance | R Documentation |
Evaluates frequentist Maximum Likelihood Estimation performance (bias, relative bias, MSE, empirical coverage) across repeated Monte Carlo replications under user-specified baseline, frailty, and censoring schemes.
simulate_mle_performance(
n_sim = 50,
n = 100,
baseline = "weibull",
bpar = c(2, 1.5),
frailty = "gamma",
fpar = c(0.8),
beta = 0.5,
cen_type = "right",
cen_rate = 0.2
)
n_sim |
Number of Monte Carlo simulation replicates. Default is 50. |
n |
Sample size per replicate. Default is 100. |
baseline |
Character string for baseline hazard ( |
bpar |
True baseline parameter vector. |
frailty |
Character string for frailty family ( |
fpar |
True frailty parameter vector. |
beta |
True regression parameter. Default 0.5. |
cen_type |
Censoring mechanism. Default |
cen_rate |
Censoring rate. Default 0.2. |
A data frame summarizing parameter true values, mean estimates, bias, relative bias, MSE, and coverage.
Pandey, A., Hanagal, D. D., & Tyagi, S. (2022). Shared Frailty Models Based on Cancer Data. International Journal of Statistics and Reliability Engineering, 9(3), 461-474.
Pandey, A., & Tyagi, S. (2021). Comparison of Multiplicative Frailty Models Under Weibull Baseline Distribution. Lobachevskii Journal of Mathematics, 42(13), 3184-3195.
set.seed(123)
sim_res <- simulate_mle_performance(n_sim = 10, n = 50, baseline = "weibull",
bpar = c(2, 1.5), frailty = "gamma", fpar = c(0.8))
print(sim_res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.