ggplot2 icon indicating copy to clipboard operation
ggplot2 copied to clipboard

Could `geom_abline` always be clipped to panel in both x and y directions?

Open davidhodge931 opened this issue 1 year ago • 1 comments

Following on from https://github.com/tidyverse/ggplot2/issues/6081

This would be helpful, as abline is always needed in the panel - and then you would have the flexibility to adjust the scale and coord settings without adversely affecting the abline.

Currently it does on the x, but not on the y.

library(tidyverse)
library(palmerpenguins)

ggplot() +
  geom_abline(colour = "blue", slope = 0.1) +
  geom_abline(colour = "red", slope = 6) +
  scale_x_continuous(limits = c(-2, 2), oob = scales::oob_keep, expand = c(0, 0)) +
  scale_y_continuous(limits = c(-2, 2), oob = scales::oob_keep, expand = c(0, 0)) +
  coord_cartesian(clip = "off") +
  theme(plot.margin = margin(50,50,50,50))

Created on 2024-09-07 with reprex v2.1.1

davidhodge931 avatar Sep 06 '24 18:09 davidhodge931