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
Awesome new package - great work!
Minor thing I noticed was the legends for colour & fill were not merging with guide_custom
library(gguidance) library(tidyverse) library(palmerpenguins) penguins |> group_by(species) |> summarise(across(flipper_length_mm, \(x) mean(x, na.rm = TRUE))) |> ggplot() + geom_col( aes(x = flipper_length_mm, y = species, colour = flipper_length_mm, fill = flipper_length_mm)) + guides( colour = guide_colourbar_custom(), fill = guide_colourbar_custom(), )
The text was updated successfully, but these errors were encountered:
Thanks for the report David! As these are three little guides wearing a trenchcoat I'd still have to figure out how best choose merging criteria.
Sorry, something went wrong.
more sensible hashing (#7)
fbd7550
Should have better detection of what and cannot be merged now
library(gguidance) #> Loading required package: ggplot2 library(tidyverse) library(palmerpenguins) penguins |> group_by(species) |> summarise(across(flipper_length_mm, \(x) mean(x, na.rm = TRUE))) |> ggplot() + geom_col( aes(x = flipper_length_mm, y = species, colour = flipper_length_mm, fill = flipper_length_mm)) + guides( colour = guide_colourbar_custom(), fill = guide_colourbar_custom(), )
Created on 2024-04-27 with reprex v2.1.0
No branches or pull requests
Awesome new package - great work!
Minor thing I noticed was the legends for colour & fill were not merging with guide_custom
The text was updated successfully, but these errors were encountered: