Compute the Highest Density Interval (HDI) of posterior distributions. All points within this interval have a higher probability density than points outside the interval. The HDI can be used in the context of uncertainty characterisation of posterior distributions as Credible Interval (CI).
hdi(x, ...)# S3 method for numeric
hdi(x, ci = 0.89, verbose = TRUE, ...)
# S3 method for data.frame
hdi(x, ci = 0.89, verbose = TRUE, ...)
# S3 method for MCMCglmm
hdi(x, ci = 0.89, verbose = TRUE, ...)
# S3 method for bayesQR
hdi(x, ci = 0.89, verbose = TRUE, ...)
# S3 method for sim.merMod
hdi(
x,
ci = 0.89,
effects = c("fixed", "random", "all"),
parameters = NULL,
verbose = TRUE,
...
)
# S3 method for sim
hdi(x, ci = 0.89, parameters = NULL, verbose = TRUE, ...)
# S3 method for emmGrid
hdi(x, ci = 0.89, verbose = TRUE, ...)
# S3 method for stanreg
hdi(
x,
ci = 0.89,
effects = c("fixed", "random", "all"),
parameters = NULL,
verbose = TRUE,
...
)
# S3 method for brmsfit
hdi(
x,
ci = 0.89,
effects = c("fixed", "random", "all"),
component = c("conditional", "zi", "zero_inflated", "all"),
parameters = NULL,
verbose = TRUE,
...
)
# S3 method for BFBayesFactor
hdi(x, ci = 0.89, verbose = TRUE, ...)
Vector representing a posterior distribution, or a data frame of such
vectors. Can also be a Bayesian model (stanreg
, brmsfit
,
MCMCglmm
, mcmc
or bcplm
) or a BayesFactor
model.
Currently not used.
Value or vector of probability of the (credible) interval - CI (between 0 and 1)
to be estimated. Default to .89
(89%).
Toggle off warnings.
Should results for fixed effects, random effects or both be returned? Only applies to mixed models. May be abbreviated.
Regular expression pattern that describes the parameters that
should be returned. Meta-parameters (like lp__
or prior_
) are
filtered by default, so only parameters that typically appear in the
summary()
are returned. Use parameters
to select specific parameters
for the output.
Should results for all parameters, parameters for the conditional model or the zero-inflated part of the model be returned? May be abbreviated. Only applies to brms-models.
A data frame with following columns:
Parameter
The model parameter(s), if x
is a model-object. If x
is a vector, this column is missing.
CI
The probability of the credible interval.
CI_low
, CI_high
The lower and upper credible interval limits for the parameters.
Unlike equal-tailed intervals (see eti()
) that typically exclude 2.5%
from each tail of the distribution and always include the median, the HDI is
not equal-tailed and therefore always includes the mode(s) of posterior
distributions.
By default, hdi()
and eti()
return the 89% intervals (ci = 0.89
),
deemed to be more stable than, for instance, 95% intervals (Kruschke, 2014).
An effective sample size of at least 10.000 is recommended if 95% intervals
should be computed (Kruschke, 2014, p. 183ff). Moreover, 89 indicates
the arbitrariness of interval limits - its only remarkable property is being
the highest prime number that does not exceed the already unstable 95%
threshold (McElreath, 2015).
A 90% equal-tailed interval (ETI) has 5% of the distribution on either side of its limits. It indicates the 5th percentile and the 95h percentile. In symmetric distributions, the two methods of computing credible intervals, the ETI and the HDI, return similar results.
This is not the case for skewed distributions. Indeed, it is possible that parameter values in the ETI have lower credibility (are less probable) than parameter values outside the ETI. This property seems undesirable as a summary of the credible values in a distribution.
On the other hand, the ETI range does change when transformations are applied to the distribution (for instance, for a log odds scale to probabilities): the lower and higher bounds of the transformed distribution will correspond to the transformed lower and higher bounds of the original distribution. On the contrary, applying transformations to the distribution will change the resulting HDI.
Kruschke, J. (2014). Doing Bayesian data analysis: A tutorial with R, JAGS, and Stan. Academic Press.
McElreath, R. (2015). Statistical rethinking: A Bayesian course with examples in R and Stan. Chapman and Hall/CRC.
# NOT RUN {
library(bayestestR)
posterior <- rnorm(1000)
hdi(posterior, ci = .89)
hdi(posterior, ci = c(.80, .90, .95))
df <- data.frame(replicate(4, rnorm(100)))
hdi(df)
hdi(df, ci = c(.80, .90, .95))
# }
# NOT RUN {
library(rstanarm)
model <- stan_glm(mpg ~ wt + gear, data = mtcars, chains = 2, iter = 200, refresh = 0)
hdi(model)
hdi(model, ci = c(.80, .90, .95))
library(emmeans)
hdi(emtrends(model, ~1, "wt"))
library(brms)
model <- brms::brm(mpg ~ wt + cyl, data = mtcars)
hdi(model)
hdi(model, ci = c(.80, .90, .95))
library(BayesFactor)
bf <- ttestBF(x = rnorm(100, 1, 1))
hdi(bf)
hdi(bf, ci = c(.80, .90, .95))
# }
Run the code above in your browser using DataLab