-
Notifications
You must be signed in to change notification settings - Fork 607
/
Copy pathprecis.Rd
39 lines (37 loc) · 1.76 KB
/
precis.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
\name{precis}
\alias{precis}
%- Also NEED an '\alias' for EACH other topic documented here.
\title{Precis of model fit}
\description{
Displays concise parameter estimate information for an existing model fit.
}
\usage{
precis( model , depth=1 , pars , ci=TRUE , prob=0.89 ,
corr=FALSE , digits=2 , warn=TRUE )
}
%- maybe also 'usage' for other objects documented here.
\arguments{
\item{model}{Fit model object}
\item{depth}{If \code{1}, suppresses vectors and matrices of parameters. If \code{2}, displays all parameters}
\item{pars}{Optional character vector of parameter names to display}
\item{ci}{Show quadratic estimate confidence intervals}
\item{prob}{Width of posterior intervals}
\item{corr}{If \code{TRUE}, show correlations among parameters in output}
\item{digits}{Number of decimal places to display in output}
\item{warn}{If \code{TRUE}, warns about various things}
}
\details{
Creates a table of estimates and standard errors, with optional confidence intervals and parameter correlations. Posterior intervals are quadratic estimates, derived from standard deviations, unless the model uses samples from the posterior distribution, in which case \code{\link{HPDI}} is used instead.
Can also provide expected value, standard deviation, and HPDI columns for a data frame.
}
\value{
A data frame with a row for each parameter. The n_eff and Rhat columns are calculated by rstan. Rhat4 indicates Rhat as defined in Gelman et al 2013 "Bayesian Data Analysis". This is different from the classic 1992 Gelman and Rubin definition, as Rhat4 uses more information from multiple chains.
}
\references{}
\author{Richard McElreath}
\seealso{}
\examples{
}
% Add one or more standard keywords, see file 'KEYWORDS' in the
% R documentation directory.
\keyword{ }