You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider a case where T is the sample size of the largest group, L<T is the length of initial fit in lfo, and where there is less than L observations in some groups. This leads to NA elpd for those groups, which is then propagated to the final ELPD estimate. This probably happens also in a case where some series have NA values at the beginning of the series for K > L time points. It's probably enough to add na.rm = TRUE to few places in the end to handle both of these cases.
The text was updated successfully, but these errors were encountered:
Actually it seems that issue happens only when refitting the model, adding na.omit when storing elpds (which I think we had before) should do the trick.
Consider a case where T is the sample size of the largest group, L<T is the length of initial fit in
lfo
, and where there is less than L observations in some groups. This leads to NA elpd for those groups, which is then propagated to the final ELPD estimate. This probably happens also in a case where some series have NA values at the beginning of the series for K > L time points. It's probably enough to addna.rm = TRUE
to few places in the end to handle both of these cases.The text was updated successfully, but these errors were encountered: