Switch to unified view

a b/man/posterior_interval.hsstan.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/postestimation.R
3
\name{posterior_interval.hsstan}
4
\alias{posterior_interval.hsstan}
5
\alias{posterior_interval}
6
\title{Posterior uncertainty intervals}
7
\usage{
8
\method{posterior_interval}{hsstan}(object, pars = NULL, prob = 0.95, ...)
9
}
10
\arguments{
11
\item{object}{An object of class \code{hsstan}.}
12
13
\item{pars}{Names of parameters for which posterior intervals should be
14
returned, which can be specified as regular expressions. If \code{NULL}
15
(default) then this refers to the set of predictors used in the model.}
16
17
\item{prob}{A value between 0 and 1 indicating the desired probability
18
to be covered by the uncertainty intervals (0.95, by default).}
19
20
\item{...}{Currently ignored.}
21
}
22
\value{
23
A matrix with lower and upper interval bounds as columns and as many rows
24
as selected parameters.
25
}
26
\description{
27
Compute posterior uncertainty intervals for \code{hsstan} objects.
28
}
29
\examples{
30
\dontshow{utils::example("hsstan", echo=FALSE)}
31
# continued from ?hsstan
32
posterior_interval(hs.biom)
33
34
}