Text in ggplot2 by Option 1sp2 + geom_text(x=3, y=30, label="Scatter plot")sp2 + geom_text(x=3, y=30, label="Scatter plot")Option 2sp2 + annotate(geom="text", x=3, y=30, label="Scatter plot", color="green")sp2 + annotate(geom="text", x=3, y=30, label="Scatter plot", color="green") Please Share