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
I'm trying to do something like the following, which I feel like I'm close to getting but am still failing.
If in your example:
grouped_ggbetweenstats( data = filter(ggplot2::mpg, drv != "4"), x = year, y = hwy, grouping.var = drv )
You wanted to customise each title to be something like
"In this plot `f/r` is the drv type".
How would I achieve that? I've tried things like:
ggplot.component = labs(title = paste0("In this plot ", title, "is the drv type")) ggplot.component = labs(title = paste0("In this plot ", names(.), "is the drv type"))
and a lot of other variants.
Thoughts?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to do something like the following, which I feel like I'm close to getting but am still failing.
If in your example:
You wanted to customise each title to be something like
How would I achieve that? I've tried things like:
and a lot of other variants.
Thoughts?
The text was updated successfully, but these errors were encountered: