band | R Documentation |
Add confidence bands
e_band(
e,
min,
max,
stack = "confidence-band",
symbol = c("none", "none"),
areaStyle = list(list(color = "rgba(0,0,0,0)"), list()),
legend = list(FALSE, FALSE),
...
)
e_band_(
e,
min,
max,
stack = "confidence-band",
symbol = c("none", "none"),
areaStyle = list(list(color = "rgba(0,0,0,0)"), list()),
legend = list(FALSE, FALSE),
...
)
e |
An |
min, max |
series. |
stack |
Name of stack. |
symbol |
Whether to show symbols on lower and upper band lines. |
areaStyle |
The style of lower and upper bands, i.e.: color. |
legend |
Whether to show |
... |
All options must be of vectors or lists of length 2 where the first argument is for the lower bound and the second for the upper bound, see examples. |
df <- data.frame(
x = 1:10,
y = runif(10, 5, 10)
) |>
dplyr::mutate(
lwr = y - runif(10, 1, 3),
upr = y + runif(10, 2, 4)
)
df |>
e_charts(x) |>
e_line(y) |>
e_band(lwr, upr)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.