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
Like geom_rug(), but part of a guide. If using for position guides, might have to manually feed data, as position guides cannot read data from plot.
geom_rug()
The text was updated successfully, but these errors were encountered:
Just realising we're already 90% there
library(legendry) #> Loading required package: ggplot2 ggplot(mtcars, aes(wt, mpg, colour = drat)) + geom_point() + guides( x = guide_axis_stack("axis", primitive_ticks(key = key_manual(mtcars$wt))), y = guide_axis_stack("axis", primitive_ticks(key = key_manual(mtcars$mpg))), colour = guide_colbar(second_guide = primitive_ticks( key = key_manual(mtcars$drat), theme = theme(legend.ticks.length = unit(2.75, "pt"), legend.ticks = element_line(colour = "black", linewidth = 0.5)) )) )
Created on 2024-12-16 with reprex v2.1.1
Sorry, something went wrong.
No branches or pull requests
Like
geom_rug()
, but part of a guide.If using for position guides, might have to manually feed data, as position guides cannot read data from plot.
The text was updated successfully, but these errors were encountered: