6
Annotazione di testo sul singolo aspetto in ggplot2
Voglio annotare un po 'di testo sull'ultima sfaccettatura della trama con il seguente codice: 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) Ma questo codice …