-
-
Notifications
You must be signed in to change notification settings - Fork 82
e_parallel and additional arguments not passed to Echarts API? #223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Yes, indeed that was wrong. Although it is because I just pushed a fix: thank you for reporting this! 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)) Feel free to reopen if that does not work. |
Hi, John, I test you code above, which give an error as follow: < rlang::last_error()
|
Which version of
|
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 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_bar
and the like.The text was updated successfully, but these errors were encountered: