A matrix of scatterplots is produced.
# S3 method for mcmc.list
pairs(x, n = 25, col = 1:length(x),
col.hist = "gold", col.image = terrain.colors(50),
density = TRUE, contour = TRUE, mean = TRUE, ...)
The function returns NULL
invisibly and
produces a plot as a side effect.
an 'mcmc.list' object.
number of of grid points in each direction for two-dimensional kernel density estimation. Can be scalar or a length-2 integer vector.
color for chains in upper panel scatterplots.
color for histogram fill in diagonal panels.
color palette for image plot in lower panel scatterplots.
logical, if image plot based on the two-dimensional kernel density estimation should be plotted in lower panel.
logical, if contour plot based on the two-dimensional kernel density estimation should be plotted in lower panel.
logical, if lines should indicate means of the posterior densities in the panels.
additional graphical parameters/arguments.
Peter Solymos, solymos@ualberta.ca
The function produces a scatterplot matrix for 'mcmc.list' objects.
Diagonal panels are posterior densities with labels and
rug on the top. Upper panels are pairwise bivariate scatterplots
with coloring corresponding to chains, thus highlighting mixing properties
although not as clearly as trace plots. Lower panels
are two-dimensional kernel density estimates based on
kde2d
function
of MASS package using image
and contour
.