Color of parallel coordinates plot by group

156 Views Asked by At

How can I set the color of a parallel coordinates plot to vary by group?

This example does not work:

library(dplyr)
mtcars |>
  group_by(gear) |> 
  e_charts() |>
  e_parallel(1:3) |>
  e_color(
    c("red", "blue")
  )
0

There are 0 best solutions below