Anotando texto na faceta individual no ggplot2

Quero anotar algum texto na última faceta do gráfico com o seguinte código: library(ggplot2) p <- ggplot(mtcars, aes(mpg, wt)) + geom_point() p <- p + facet_grid(. ~ cyl) p <- p + annotate("text", label = "Test", size = 4, x = 15, y = 5) print(p) Mas esse código anota o texto em todas...