I have a df with information about the rolling average of deaths from a disease per day, from 2020-04-11 to 2021-07-01 (YYYY-MM-DD).
head(df)
DATE DEATHS_RA
1 2020-04-11 1.666667
2 2020-04-12 2.166667
3 2020-04-13 2.333333
4 2020-04-14 2.500000
5 2020-04-15 2.666667
6 2020-04-16 2.833333
With this code I get this basic graph.
try1 <- ggplot(df) +
aes(x = DATE, y = DEATHS_RA) +
geom_line(size = 1, colour = "#871709") +
theme_minimal()+
labs(x="",y="")
But I want to know if I can add an annotation like the following image (I extracted it from the internet).

I tried with the following code that I was looking for in different tutorials about ggplot2 but the result is the same as in the previous graph, as if R doesn't recognize what I write in geom_label.
try1+
geom_label(label="Look at this!", x=2021-05-01,y=10,
hjust = 0,
vjust = 0.5,
lineheight = 0.8,
colour = "#555555",
fill = "white",
label.size = NA,
size = 6
)


