hist_ci | R Documentation |
Plot of a histogram of a given vector x
and the related confidence intervals (lower
, upper
).
hist_ci(
x,
alpha = 0.05,
col_bars = "grey",
col_ci = "red",
...
)
x |
A numeric vector |
alpha |
Significance level |
col_bars |
Color of bars in histogram |
col_ci |
Color of lines for confidence interval |
... |
Additional arguments passed to |
Helper function for plot(sbm_ci)
, but may be used separately.
Histogram plot, no returned value
Thomas Wieland
numeric_vector <- c(1,9,5,6,3,10,20,6,9,14,3,5,8,6,11)
# any numeric vector
hist_ci(numeric_vector)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.