powered by
Draw parallel coordinates.
e_parallel(e, ..., name = NULL, rm.x = TRUE, rm.y = TRUE)e_parallel_(e, ..., name = NULL, rm.x = TRUE, rm.y = TRUE)
e_parallel_(e, ..., name = NULL, rm.x = TRUE, rm.y = TRUE)
An echarts4r object as returned by e_charts.
echarts4r
e_charts
Any other option to pass, check See Also section.
name of the serie.
Whether to remove x and y axis, defaults to TRUE.
TRUE
https://ecomfe.github.io/echarts-doc/public/en/option.html#series-parallel
# 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