We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
An easier way to remove outliers and expand the boxplots to fill the graph would be nice.
This does work but I would have thought that there would be some less manual way of doing it.
library(ggplot2) xlim_ <- range(boxplot.stats(mpg$hwy)$stats) ggplot(mpg, aes(hwy, class)) + geom_boxplot(outlier.shape = NA) + xlim(xlim_) #> Warning: Removed 3 rows containing non-finite values (`stat_boxplot()`).
In classical graphics outline=FALSE will both omit outliers and cause boxes to fill the graph.
outline=FALSE
boxplot(hwy ~ class, mpg, outline = FALSE, horizontal = TRUE)
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
An easier way to remove outliers and expand the boxplots to fill the graph would be nice.
This does work but I would have thought that there would be some less manual way of doing it.
In classical graphics
outline=FALSE
will both omit outliers and cause boxes to fill the graph.The text was updated successfully, but these errors were encountered: