\name{traceAutoplot} \alias{traceAutoplot} \title{Side by side trace and acf plots} \description{ Takes a \code{mcmc} or \code{mcmc.list} object and produces a trace plot and acf plot for each parameter. Replaces the density plot in the usual \code{plot.mcmc} method with an acf plot. } \usage{ traceAutoplot(x, smooth = TRUE, ...) } \arguments{ \item{x}{A \code{mcmc} or \code{mcmc.list} object} \item{smooth}{Boolean, include smooth in traceplot.} \item{\dots}{Futher arguments passed to plotting functions.} } \details{ Uses \code{overlayedacfplot} to get the details. } \author{Russell Almond} \section{Side Effects}{ Sets the number of plots in the plotting region, and creates that many plots. } \seealso{\code{\link[mcmc]{mcmc}},\code{\link[mcmc]{mcmc.list}}, \code{\link[mcmc]{plot.mcmc}}, \code{\link{overlayedacfplot}} } \examples{ ### This example will only run if you have the StatShop test databases ### installed on your machine. StatShop <- Sys.getenv("STATSHOP") if (StatShop == "") { warn("StatShop not installed, skipping test.") } else { asp.dbConnect("mcmc_statistics_test","junit") smp1 <- getParameterVector("system",listParameterNames("system")[1]) traceAutoplot(smp1) asp.dbDisconnect() } } \keyword{ts}