You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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,
)
The text was updated successfully, but these errors were encountered:
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
Can use ggplot2 instead in these edge-case situations...
The text was updated successfully, but these errors were encountered: