-
-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include tail ESS if possible #468
Comments
To use rstanarm objects currently, we can use posterior functions by extracting the |
Looking at the I.05 <- x <= quantile(x, 0.05)
I.95 <- x <= quantile(x, 0.95)
min(ess(I.05), ess(I.95)) |
The Stan packages seem to all be moving to relying on posterior for these sorts of computations, so a soft dependency for Stan models could be okay. |
Would be really nice if BayesFactor and INLA would also update to work with the posterior S3 generics... |
Unlikely... That's what we're here for! I still cannot wrap my head around the rvar data :/ |
My understanding is that rvar are helpful, but we can also just work with numeric R vectors |
Currently, we only report the bulk ESS. The tail ESS is useful for diagnosising reliability of the interval quantiles and detecting poor mixing. It's available by default from brms objects and can be computed for all Stan models using
posterior::ess_tail()
(vs.posterior::ess_bulk()
).The text was updated successfully, but these errors were encountered: