Note behaviour of the annotated label in p2 below. I would have expected it to match that in p1 ``` library(tidyverse) library(palmerpenguins) library(patchwork) p1 <- penguins |> ggplot() + geom_point( aes(x = flipper_length_mm, y = body_mass_g), ) + annotate("label", x = I(0.2), y = I(0.8), label = "Here") p2 <- penguins |> ggplot() + geom_bar( aes(y = sex, fill = species), position = "dodge", ) + annotate("label", x = I(0.2), y = I(0.8), label = "Here") p1 + p2 ``` <img width="482" alt="Image" src="https://github.com/user-attachments/assets/5f3685fe-50aa-4557-ab3c-5a61d14b4329" />