exdqlmSynthesis ObjectsPlot the pointwise posterior predictive interval produced by
quantileSynthesis. The method is intentionally separate from
quantileSynthesis() so the synthesis step remains a computation,
while the returned object still has a standard plotting interface.
# S3 method for exdqlmSynthesis
plot(
x,
y = NULL,
time = NULL,
add = FALSE,
interval = 0.95,
show.median = TRUE,
show.mean = FALSE,
band.col = grDevices::adjustcolor("lightblue", alpha.f = 0.35),
median.col = "blue",
mean.col = "darkblue",
y.col = "dark grey",
border = NA,
xlab = "time",
ylab = "posterior predictive synthesis",
main = NULL,
xlim = NULL,
ylim = NULL,
...
)An exdqlmSynthesis object.
Optional observed series to overlay.
Optional time vector for the synthesized summaries. If omitted,
seq_len(T) is used, where T is the number of synthesized time
points.
Logical; add the synthesis interval to an existing plot.
Numeric in (0, 1) giving the plotted central interval.
Currently 0.50 and 0.95 are supported from stored summaries.
Logical; draw the synthesized posterior median.
Logical; draw the synthesized posterior mean.
Fill color for the predictive interval.
Color for the posterior median line.
Color for the posterior mean line.
Color for the optional observed series.
Border color for the predictive interval polygon.
Graphical labels.
Optional axis limits.
Additional graphical arguments passed to the initial
plot() call when add = FALSE.