-
Hello everyone, I was wondering if somebody knew how to output a summary table that includes the neff (effective number of samples) of the jags run when using Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In the example at https://docs.ropensci.org/jagstargets/articles/introduction.html, |
Beta Was this translation helpful? Give feedback.
In the example at https://docs.ropensci.org/jagstargets/articles/introduction.html,
tar_read(example_summary_x)
has effective sample size in columnsess_bulk
andess_tail
. Both are calculated byposterior::summarize_draws()
. If you want basic effective sample size instead ofposterior::ess_bulk()
orposterior::ess_tail()
, you can customize thesummaries
argument oftar_jags()
, e.g.summaries = list(ess_basic = ~posterior::ess_basic(.x))
.