e_parallel | R Documentation |
Draw parallel coordinates.
e_parallel(e, ..., name = NULL, rm_x = TRUE, rm_y = TRUE, opts = list())
e_parallel_(e, ..., name = NULL, rm_x = TRUE, rm_y = TRUE, opts = list())
e |
An |
... |
Columns to select from the data passed to |
name |
name of the serie. |
rm_x, rm_y |
Whether to remove x and y axis, defaults to |
opts |
A list of additional options to pass to the serie. |
df <- data.frame(
price = rnorm(5, 10),
amount = rnorm(5, 15),
letter = LETTERS[1:5]
)
df |>
e_charts() |>
e_parallel(price, amount, letter, opts = list(smooth = TRUE))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.