The warning emitted by loo_order_stat_check() when comparing >11 models concatenates two sentences without a space:
Difference in performance potentially due to chance.See McLatchie and Vehtari (2023) for details.
R's warning() pastes multiple string args together with no separator, so the period runs right into "See". Should read:
Difference in performance potentially due to chance. See McLatchie and Vehtari (2023) for details.
Easy one-liner in R/loo_compare.R, line ~330.
The warning emitted by
loo_order_stat_check()when comparing >11 models concatenates two sentences without a space:R's
warning()pastes multiple string args together with no separator, so the period runs right into "See". Should read:Easy one-liner in
R/loo_compare.R, line ~330.