forked from tidyverse/ggplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathannotation_custom.Rd
54 lines (51 loc) · 1.58 KB
/
annotation_custom.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
\name{annotation_custom}
\alias{annotation_custom}
\title{Annotation: Custom grob.}
\usage{
annotation_custom(grob, xmin = -Inf, xmax = Inf,
ymin = -Inf, ymax = Inf)
}
\arguments{
\item{grob}{grob to display}
\item{xmin,xmax}{x location (in data coordinates) giving
horizontal location of raster}
\item{ymin,ymax}{y location (in data coordinates) giving
vertical location of raster}
}
\description{
This is a special geom intended for use as static
annnotations that are the same in every panel. These
anotations will not affect scales (i.e. the x and y axes
will not grow to cover the range of the grob, and the
grob will not be modified by any ggplot settings or
mappings).
}
\details{
Most useful for adding tables, inset plots, and other
grid-based decorations.
}
\note{
\code{annotation_custom} expects the grob to fill the
entire viewport defined by xmin, xmax, ymin, ymax. Grobs
with a different (absolute) size will be center-justified
in that region. Inf values can be used to fill the full
plot panel (see examples).
}
\examples{
# Dummy plot
base <- qplot(1:10, 1:10, geom = "blank") + theme_bw()
# Adding a table
\donttest{
require(gridExtra)
base + annotation_custom(grob = tableGrob(head(iris[ ,1:3])),
xmin = 3, xmax = 6, ymin = 2, ymax = 8)
# full panel
base + annotation_custom(grob = roundrectGrob(),
xmin = -Inf, xmax = Inf, ymin = -Inf, ymax = Inf)
}
# Inset plot
g <- ggplotGrob(qplot(1, 1) +
theme(plot.background = element_rect(colour = "black")))
base +
annotation_custom(grob = g, xmin = 1, xmax = 10, ymin = 8, ymax = 10)
}