Membubuhi keterangan teks pada setiap aspek di ggplot2

Saya ingin membuat anotasi beberapa teks pada aspek terakhir plot dengan kode berikut: 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) Tetapi kode ini membubuhi...