Diff of /man/summary.hsstan.Rd [000000] .. [ede2d4]

Switch to unified view

a b/man/summary.hsstan.Rd
1
% Generated by roxygen2: do not edit by hand
2
% Please edit documentation in R/summaries.R
3
\name{summary.hsstan}
4
\alias{summary.hsstan}
5
\title{Summary for the fitted model}
6
\usage{
7
\method{summary}{hsstan}(
8
  object,
9
  pars = NULL,
10
  prob = 0.95,
11
  digits = 2,
12
  sort = NULL,
13
  decreasing = TRUE,
14
  max.rows = NULL,
15
  ...
16
)
17
}
18
\arguments{
19
\item{object}{An object of class \code{hsstan}.}
20
21
\item{pars}{Vector of parameter names to be extracted. If \code{NULL}
22
(default) then this refers to the set of predictors used in the
23
model.}
24
25
\item{prob}{Width of the posterior intervals (0.95, by default).}
26
27
\item{digits}{Number of decimal places to be reported (2 by default).}
28
29
\item{sort}{Column name used to sort the results according to the absolute
30
value of the column. If \code{NULL} (default) or the column name cannot
31
be found, no sorting occurs.}
32
33
\item{decreasing}{Whether the results should be sorted in decreasing order
34
when a valid column name is specified in \code{sort} (\code{TRUE} by default).}
35
36
\item{max.rows}{Maximum number of rows to be returned. If \code{NULL}
37
(default) or 0, all results are returned.}
38
39
\item{...}{Currently ignored.}
40
}
41
\value{
42
A matrix with summaries from the posterior distribution of the parameters
43
of interest.
44
}
45
\description{
46
Summary for the fitted model
47
}
48
\examples{
49
\dontshow{utils::example("hsstan", echo=FALSE)}
50
# continued from ?hsstan
51
summary(hs.biom)
52
53
}