e_river | R Documentation |
Build a theme river.
e_river(e, serie, name = NULL, legend = TRUE, rm_x = TRUE, rm_y = TRUE, ...)
e_river_(e, serie, name = NULL, legend = TRUE, rm_x = TRUE, rm_y = TRUE, ...)
e |
An |
serie |
Column name of serie to plot. |
name |
name of the serie. |
legend |
Whether to add serie to legend. |
rm_x, rm_y |
Whether to remove x and y axis, defaults to |
... |
Any other option to pass, check See Also section. |
dates <- seq.Date(Sys.Date() - 30, Sys.Date(), by = "day")
grps <- lapply(LETTERS[1:3], rep, 31) |> unlist()
df <- data.frame(
dates = rep(dates, 3),
groups = grps,
values = runif(length(grps), 1, 50)
)
df |>
group_by(groups) |>
e_charts(dates) |>
e_river(values) |>
e_tooltip(trigger = "axis")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.