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
|
\name{summary.mcmc}
\alias{summary.mcmc}
\alias{summary.mcmc.list}
%\alias{print.summary.mcmc}
%\alias{print.summary.mcmc.list}
\title{Summary statistics for Markov Chain Monte Carlo chains}
\usage{
\method{summary}{mcmc}(object, quantiles = c(0.025, 0.25, 0.5, 0.75, 0.975), \dots)
}
\arguments{
\item{object}{an object of class \code{mcmc} or \code{mcmc.list}}
\item{quantiles}{a vector of quantiles to evaluate for each variable}
\item{\dots}{a list of further arguments}
}
\description{
\code{summary.mcmc} produces two sets of summary statistics for
each variable:
Mean, standard deviation, naive standard error of the mean
(ignoring autocorrelation of the chain) and time-series standard
error based on an estimate of the spectral density at 0.
Quantiles of the sample distribution using the \code{quantiles}
argument.
}
\author{Martyn Plummer}
\seealso{
\code{\link{mcmc}},
\code{\link{mcmc.list}}.
}
\keyword{univar}
|