Skip to content

Commit c351ad6

Browse files
committed
Fix position_dodge example. Fixes tidyverse#755
1 parent 9395803 commit c351ad6

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

R/position-dodge.r

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@
1111
#' # see ?geom_boxplot and ?geom_bar for more examples
1212
#'
1313
#' # Dodging things with different widths is tricky
14-
#' df <- data.frame(x=c("a","a","b","b"), y=1:4)
15-
#' (p <- qplot(x, y, data=df, position="dodge", geom="bar", stat="identity"))
14+
#' df <- data.frame(x=c("a","a","b","b"), y=1:4, g = rep(1:2, 2))
15+
#' (p <- qplot(x, y, data=df, group=g, position="dodge", geom="bar",
16+
#' stat="identity"))
1617
#'
1718
#' p + geom_linerange(aes(ymin = y-1, ymax = y+1), position="dodge")
1819
#' # You need to explicitly specify the width for dodging

man/position_dodge.Rd

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ ggplot(diamonds, aes(x=price, fill=cut)) + geom_bar(position="dodge")
2222
# see ?geom_boxplot and ?geom_bar for more examples
2323

2424
# Dodging things with different widths is tricky
25-
df <- data.frame(x=c("a","a","b","b"), y=1:4)
26-
(p <- qplot(x, y, data=df, position="dodge", geom="bar", stat="identity"))
25+
df <- data.frame(x=c("a","a","b","b"), y=1:4, g = rep(1:2, 2))
26+
(p <- qplot(x, y, data=df, group=g, position="dodge", geom="bar",
27+
stat="identity"))
2728

2829
p + geom_linerange(aes(ymin = y-1, ymax = y+1), position="dodge")
2930
# You need to explicitly specify the width for dodging

man/qplot.Rd

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
\item{geom}{character vector specifying geom to use.
3232
Defaults to "point" if x and y are specified, and
33-
"histogram" is on x is specified.}
33+
"histogram" if only x is specified.}
3434

3535
\item{stat}{character vector specifying statistics to
3636
use}

0 commit comments

Comments
 (0)