Skip to content

Commit

Permalink
Merge pull request #330 from wch/fix/dotplot-param
Browse files Browse the repository at this point in the history
dotplot: add missing parameter
  • Loading branch information
hadley committed Dec 29, 2011
2 parents 293064f + bcb9346 commit 5010603
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/geom-dotplot.r
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@
#' geom_dotplot(binaxis = "y", stackdir = "center", binpositions="all")
#'
geom_dotplot <- function (mapping = NULL, data = NULL, stat = "bindot", position = "identity",
na.rm = FALSE, binaxis = "x", method="dotdensity", binpositions = "bygroup", stackdir = "up",
na.rm = FALSE, binwidth = NULL, binaxis = "x", method="dotdensity", binpositions = "bygroup", stackdir = "up",
stackratio = 1, dotsize = 1, ...) {
GeomDotplot$new(mapping = mapping, data = data, stat = stat, position = position,
na.rm = na.rm, binaxis = binaxis, method = method, binpositions = binpositions,
na.rm = na.rm, binwidth = binwidth, binaxis = binaxis, method = method, binpositions = binpositions,
stackdir = stackdir, stackratio = stackratio, dotsize = dotsize, ...)
}

Expand Down

0 comments on commit 5010603

Please sign in to comment.