Hi John, thank you for the wonderful package! I recently created a parallel graph and tried to format the lines. I noticed in the source code for echarts4r:::e_parallel.echarts4r that ... is passed to dplyr::select(...), even though the help documentation says otherwise (https://echarts4r.john-coene.com/reference/e_parallel.html):
function (e, ..., name = NULL, rm_x = TRUE, rm_y = TRUE)
{
e <- .rm_axis(e, rm_x, "x")
e <- .rm_axis(e, rm_y, "y")
df <- e$x$data[[1]] %>% dplyr::select(...)
I imagine this was by design to simplify creating a parallel chart, but it was an expected behavior after using e_scatter, e_bar and the like.
Hi John, thank you for the wonderful package! I recently created a parallel graph and tried to format the lines. I noticed in the source code for
echarts4r:::e_parallel.echarts4rthat...is passed todplyr::select(...), even though the help documentation says otherwise (https://echarts4r.john-coene.com/reference/e_parallel.html):I imagine this was by design to simplify creating a parallel chart, but it was an expected behavior after using
e_scatter,e_barand the like.