Learn R Programming

echarts4r (version 0.2.0)

e_parallel: Parallel

Description

Draw parallel coordinates.

Usage

e_parallel(e, ..., name = NULL, rm_x = TRUE, rm_y = TRUE)

e_parallel_(e, ..., name = NULL, rm_x = TRUE, rm_y = TRUE)

Arguments

e

An echarts4r object as returned by e_charts.

...

Any other option to pass, check See Also section.

name

name of the serie.

rm_x, rm_y

Whether to remove x and y axis, defaults to TRUE.

See Also

Additional arguments

Examples

Run this code
# NOT RUN {
df <- data.frame(
  price = rnorm(5, 10),
  amount = rnorm(5, 15),
  letter = LETTERS[1:5]
)

df %>% 
  e_charts() %>% 
  e_parallel(price, amount, letter) 
  
# }

Run the code above in your browser using DataLab