elpd_pointwise_summaries | R Documentation |
Convenience function to collect quantiles and summaries of the pointwise elpd estimates instead of just the main estimates. The returned summaries are all sample size independent.
elpd_pointwise_summaries(fit, quantiles, newdata = NULL)
fit |
A brmsfit object. |
quantiles |
A vector of quantiles of interest. |
newdata |
If supplied, returns the summaries for |
A named list of summaries.
fit <- brms::brm(y ~ 1, data = list(rnorm(1000)))
elpd_pointwise_summaries(fit, seq(0.1, 0.9, length.out = 9))
elpd_pointwise_summaries(fit, seq(0.1, 0.9, length.out = 9), rnorm(1000))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.