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
|
\name{traceplot}
\alias{traceplot}
\title{Trace plot of MCMC output}
\usage{traceplot(x, smooth = TRUE, col, type, ylab, \dots)}
\arguments{
\item{x}{An \code{mcmc} or \code{mcmc.list} object}
\item{smooth}{draw smooth line through trace plot}
\item{col}{graphical parameter (see \code{par})}
\item{type}{graphical parameter (see \code{par})}
\item{ylab}{graphical parameter (see \code{par})}
\item{\dots}{further graphical parameters}
}
\description{
Displays a plot of iterations \emph{vs.} sampled values for each variable
in the chain, with a separate plot per variable.
}
\note{
You can call this function directly, but it is more usually
called by the \code{plot.mcmc} function.
}
\seealso{
\code{\link{densplot}}, \code{\link{plot.mcmc}}.
}
\keyword{hplot}
|