-
Notifications
You must be signed in to change notification settings - Fork 99
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
Drop ggpubr dependency #215
Conversation
I will check this in a bit. But @grantmcdermott, you know the automatic tests are not passing.... =P |
Well, the R CMD tests are all passing. It's the mysterious "R-Package-Test" workflow that's failing... More seriously, I think it's just a minor undeclared dependency issue. We just need to add |
Ugh, looks like I made things worse. Serves me right for doing this on my phone before getting the kids to school. I'll take a proper look later and ping you when it's ready. |
Sounds good!!! |
I think it may be the |
To be clear, the tests are also passing locally here |
We are good! It is not passing! |
Closes #210.
This PR simply drops
ggpubr
and replaces one or two functions with with "native"ggplot2
equivalents.The plots are slightly different, but I personally doubt that anyone will really notice. More importantly, this small change leads to over 30(!) fewer dependencies.
Created on 2024-11-04 with reprex v2.1.1
PS. If you want to continue down this road, then there are more places for trimming. E.g. If you already have
data.table
, then you probably get away with importingdplyr
andtidyr
. But I'll leave that for you to signal interest.