ggplot2 (version 0.9.1)

annotate: Annotate a plot

Description

This function adds geoms to a plot. Unlike typical a geom function, the properties of the geoms are not mapped from variables of a data frame. The aesthetic properties, such as x-position, are passed in as vectors.

Usage

annotate(geom, x = NULL, y = NULL, xmin = NULL,
    xmax = NULL, ymin = NULL, ymax = NULL, ...)

Arguments

geom
name of geom to use for annotation
x
x position
y
y position
xmin
xmin position
ymin
ymin position
xmax
xmax position
ymax
ymax position
...
other arguments passed to geom as parameters

Details

This is useful for adding individual labels to a plot, and it can also be used for drawing geoms from data in vectors.

Note that all position aesthetics are scaled (i.e. they will expand the limits of the plot so they are visible), but all other aesthetics are set.

Examples

Run this code
p <- ggplot(mtcars, aes(x = wt, y = mpg)) + geom_point()
p + annotate("text", x = 4, y = 25, label = "Some text")
p + annotate("rect", xmin = 3, xmax = 4.2, ymin = 12, ymax = 21, alpha = .2)
p + annotate("segment", x = 2.5, xend = 4, y = 15, yend = 25, colour = "blue")
p + annotate("pointrange", x = 3.5, y = 20, ymin = 12, ymax = 28,
  colour = "red", size = 1.5)

Run the code above in your browser using DataLab