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
check_outliers()
For the outliers paper, we have to add manual ggplot2 code to the plot method for check_outliers() so that the labels don't overlap. Reprex:
ggplot2
library(performance) library(see) x <- check_outliers(mtcars) plot(x)
# Correction: plot(x) + ggplot2::theme(axis.text.x = ggplot2::element_text( angle = 45, size = 8 ))
Created on 2024-01-24 with reprex v2.0.2
Would it make sense to make this the default?
Later on we can tackle #262 properly but for now that should be an improvement already?
The text was updated successfully, but these errors were encountered:
Alternatively, we could use n.dodge argument and set it to 2.
n.dodge
2
Sorry, something went wrong.
Result for reference:
library(performance) library(see) x <- check_outliers(mtcars) plot(x) + ggplot2::guides(x = ggplot2::guide_axis(n.dodge = 2))
Yeah I think it could work too
Rotate x-axis labels by default for plot method for check_outliers()
c183aac
Fixes #317
Rotate x-axis labels by default for plot method for check_outliers() (
3e13fc2
#321) Fixes #317
strengejacke
Successfully merging a pull request may close this issue.
For the outliers paper, we have to add manual
ggplot2
code to the plot method forcheck_outliers()
so that the labels don't overlap. Reprex:Created on 2024-01-24 with reprex v2.0.2
Would it make sense to make this the default?
Later on we can tackle #262 properly but for now that should be an improvement already?
The text was updated successfully, but these errors were encountered: