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

Boxplot outliers not removed. #2305

Open
mjdzr opened this issue Oct 18, 2023 · 1 comment
Open

Boxplot outliers not removed. #2305

mjdzr opened this issue Oct 18, 2023 · 1 comment

Comments

@mjdzr
Copy link

mjdzr commented Oct 18, 2023

Hello and thanks a lot for the great package!

I want to delete boxplot outliers as they're duplicates of jitters (but I want to keep the jitters). I have tried to set outlier.[any option] to NA or 0 but still no luck.

Thank you!

library(pacman)
pacman::p_load(dplyr, ggplot2, plotly)


g <- ggplot(chickwts %>% dplyr::filter(feed == "sunflower"),
            aes(x = factor(feed), y = weight, fill = factor(feed))) + 
  geom_boxplot(outlier.shape = NA) + 
  geom_jitter(alpha = 0.5, height = 0)

plot(g)

image

ggplotly(g)

newplot (3)

I apologize if this has been discussed before. Feel free to delete...

@LDSamson
Copy link

LDSamson commented Nov 9, 2023

See this thread. I just posted a workaround function for this specific use case here.
I think it is not yet solved in the current plotly version, but correct me if I am wrong.

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