79567583

Date: 2025-04-10 21:13:21
Score: 0.5
Natty:
Report link

Could you use transformed color/fill scale? Instead of scale_color_continuous() use

continuous_scale(
    aesthetics = "color", 
    palette = pal_seq_gradient(
      low = "#132B43", 
      high = "#56B1F7",  
      "Lab"),
    transform = "log"
  ) +
  guides(color = "colorbar")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
Posted by: Michiel Duvekot