Skip to content
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

col_palette_o: ordinal colour palettes fail when many colours required #942

Open
davidhodge931 opened this issue Jul 5, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@davidhodge931
Copy link
Owner

Can use ggplot2 instead in these edge-case situations...

faithfuld |>
  gg_contour_filled(
    x = waiting,
    y = eruptions,
    z = density,
    bins = 14,
  )

faithful |>
  gg_density_2d_filled(
    x = waiting,
    y = eruptions,
    bins = 15,
    contour = TRUE,
  )

faithful |>
  ggplot() +
  geom_density_2d_filled(
    aes(x = waiting,
    y = eruptions),
    bins = 15,
    contour = TRUE,
  )
@davidhodge931 davidhodge931 changed the title col_palette_o: ordinal colour palettes fail when high numbers of colours required col_palette_o: ordinal colour palettes fail when many colours required Jul 5, 2024
@davidhodge931 davidhodge931 added the bug Something isn't working label Jul 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant