
Function to Compute Performance Metrics (RB, MSE, RRMSE, CP, LEN)
Source:R/general_fct.R
performence.compare.RdThis function computes several performance metrics comparing the estimated parameters (`final_par`) to the true parameter values (`true_value`). It calculates relative bias (RB), mean squared error (MSE), relative mean squared error (re_MSE), coverage probability (CP), and length of the confidence interval (LEN).
Usage
performence.compare(
true_value = para,
final_par = c(em_para_re, inti_par, bayes_para_re),
interval_re = NULL
)