-
Notifications
You must be signed in to change notification settings - Fork 12
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
More options from ggplot for plotAbundanceDensity #122
Comments
This issue should be moved to miaViz? |
You are right. It's possible to transfer issues if you have write access. |
Another thing is that it might be simper to modify the ggplot object that comes from the plotAbundanceDensity function (instead of adding new parameters). Can you check that option? If that is easier, then we could modify examples |
@artur-sannikov You are in miaverse-developers team and that has write access to miaViz. Does it work? |
One limitation with ggplot is that changing the geom_* afterwards is not so handy (e.g from violin to boxplot). It is possible and perhaps it would be wise to first create & show an example of that and then think if that is too complex, justifying shortcuts. |
--> The we can decide if we add the support |
I think what I wanted to achieve is to have library(tidyverse)
data(mpg)
ggplot(mpg, aes(x = cyl, y = hwy)) +
geom_jitter(width=0.5, height=0.3) Some arguments are set here. |
Any volunteers to pick up this one (including the linked issues)? |
plotAbundanceDensity
function does not accepts arguments from ggplot, for examplejitter
layout does not havewidth
option and usesgeom_point()
as its basis but it does not accept geom_point options.The text was updated successfully, but these errors were encountered: