Skip to content

Commit e56c351

Browse files
committed
Merge 6cb8dd9 into 59c503b
2 parents 59c503b + 6cb8dd9 commit e56c351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/geom-dotplot.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ GeomDotplot <- ggproto("GeomDotplot", Geom,
238238
# works. They're just set to the standard x +- width/2 so that dot clusters
239239
# can be dodged like other geoms.
240240
# After position code is rewritten, each dot should have its own bounding box.
241-
data <- plyr::ddply(data, "group", transform,
241+
data <- plyr::ddply(data, c("group", "PANEL"), transform,
242242
ymin = min(y) - binwidth[1] / 2,
243243
ymax = max(y) + binwidth[1] / 2)
244244

0 commit comments

Comments
 (0)