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
|
% Generated by roxygen2 (4.0.1): do not edit by hand
\name{position_dodge}
\alias{position_dodge}
\title{Adjust position by dodging overlaps to the side.}
\usage{
position_dodge(width = NULL, height = NULL)
}
\arguments{
\item{width}{Manually specify width (does not affect all position
adjustments)}
\item{height}{Manually specify height (does not affect all position
adjustments)}
}
\description{
Adjust position by dodging overlaps to the side.
}
\examples{
\donttest{
ggplot(mtcars, aes(x=factor(cyl), fill=factor(vs))) +
geom_bar(position="dodge")
ggplot(diamonds, aes(x=price, fill=cut)) + geom_bar(position="dodge")
# see ?geom_boxplot and ?geom_bar for more examples
# Dodging things with different widths is tricky
df <- data.frame(x=c("a","a","b","b"), y=1:4, g = rep(1:2, 2))
(p <- qplot(x, y, data=df, group=g, position="dodge", geom="bar",
stat="identity"))
p + geom_linerange(aes(ymin = y-1, ymax = y+1), position="dodge")
# You need to explicitly specify the width for dodging
p + geom_linerange(aes(ymin = y-1, ymax = y+1),
position = position_dodge(width = 0.9))
# Similarly with error bars:
p + geom_errorbar(aes(ymin = y-1, ymax = y+1), width = 0.2,
position="dodge")
p + geom_errorbar(aes(ymin = y-1, ymax = y+1, width = 0.2),
position = position_dodge(width = 0.90))
}
}
\seealso{
Other position adjustments: \code{\link{position_fill}};
\code{\link{position_identity}};
\code{\link{position_jitterdodge}};
\code{\link{position_jitter}};
\code{\link{position_stack}}
}
|