Compares the calibration results from EQC and SPC algorithms.
Value
A list with comparison statistics (invisibly):
c_eqcCalibrated c* from EQC.
c_spcCalibrated c* from SPC.
diff_absAbsolute difference between c* values.
diff_pctPercent difference relative to EQC.
agreementLogical. TRUE if difference is < 5%.
target_rhoTarget reliability.
Examples
if (FALSE) { # \dontrun{
# Run both algorithms
eqc_result <- eqc_calibrate(target_rho = 0.80, n_items = 25, seed = 42)
spc_result <- spc_calibrate(target_rho = 0.80, n_items = 25,
c_init = eqc_result, seed = 42)
# Compare results
compare_eqc_spc(eqc_result, spc_result)
} # }