I fit a non-linear custom model (asymmetric logit) with random effects (R and C) and I want to compare the different fitted models. It works well but I have difficulties to understand the output of loo_compare and loo_model_weights:
First I do:
llok <- loo_compare(list(noR_noC=m1_loo,
R_noC=m2_loo,
noR_C=m3_loo,
R_C=m4_loo))
I get:
elpd_diff se_diff
R_C 0.0 0.0
noR_C -0.9 1.7
R_noC -132.5 50.1
noR_noC -168.9 58.6
Now:
loo_model_weights(list(noR_noC=m1_loo,
R_noC=m2_loo,
noR_C=m3_loo,
R_C=m4_loo))
Method: stacking
------
weight
noR_noC 0.079
R_noC 0.149
noR_C 0.000
R_C 0.772
How it is possible that
R_C and noR_C being nearly non-distinguable using elpd_diff are so different based on weight ?
Thanks a lot