boxplot.Siid | R Documentation |
Boxplots with simultaenous error bars around all quantiles for iid data.
## S3 method for class 'Siid'
boxplot(x, ..., alpha = 0.05, thresh = 0.001,
quan.col = 'lightsteelblue3', opaq = .6, range = 1.5,
width = NULL, varwidth = FALSE, outline = TRUE, plot = TRUE,
border = par("fg"), col = 'white', ann = !add,
horizontal = FALSE, add = FALSE)
x |
: a ‘Siid’ class object |
... |
: arguments sent to boxplot |
alpha |
: confidence level of simultaneous confidence intervals |
thresh |
: numeric typically less than .005 for the accuracy of the simulteaneous procedure |
quan.col |
: color for the quantile confidence intervals |
opaq |
: opacity of |
range |
: as defined for base |
width |
: as defined for base |
varwidth |
: as defined for base |
outline |
: as defined for base |
plot |
: logical indicating whether the plot is to be constructed |
border |
: as defined for base |
col |
: as defined for base |
ann |
: as defined for base |
horizontal |
: as defined for base |
add |
: as defined for base |
returns the base boxplot
with simultaneous confidence intervals around
all quantiles
Robertson, N., Flegal, J. M., Vats, D., and Jones, G. L., “Assessing and Visualizing Simultaneous Simulation Error”, Journal of Computational and Graphical Statistics, 2020.
# Generating iid data
chain <- matrix(rnorm(3*1e3), nrow = 1e3, ncol = 3)
siid.obj <- Siid(chain)
boxplot(siid.obj)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.