Skip to content
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

e_flip_coords does not work properly with outliers in boxplot #365

Closed
Laurent-Smeets-GSS-Account opened this issue Aug 25, 2021 · 1 comment

Comments

@Laurent-Smeets-GSS-Account
Copy link

Laurent-Smeets-GSS-Account commented Aug 25, 2021

Outliers are shown when running this code (per example)

df <- data.frame(
  x = c(1:10, 25),
  y = c(1:10, -6)
)

df |>
  e_charts() |>
  e_boxplot(y, outliers = TRUE) |>
  e_boxplot(x, outliers = TRUE) 

but not when adding e_flip_coords

df <- data.frame(
  x = c(1:10, 25),
  y = c(1:10, -6)
)

df |>
  e_charts() |>
  e_boxplot(y, outliers = TRUE) |>
  e_boxplot(x, outliers = TRUE) |>
  e_flip_coords() 

This might have something to do with #336 (comment), but installing the latest GitHub release did not fix it for me.

@JohnCoene
Copy link
Owner

I pushed a fix, please reinstall the latest version and let me know if that works as expected.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants