Bulk and tail ESS with rstanarm

I think this will be a straightforward question - is it possible to easily extract bulk and tail effective sample sizes from rstanarm models (stanreg objects) in a similar way to using the monitor function with a stanfit object?

  • rstanarm Version: 2.19.2

You can use the same monitor function for the stanfit object inside stanreg object:

library("rstan")
monitor(fit1$stanfit)
1 Like

Perfect - thank you