Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ importFrom(plyr,compact)
importFrom(plyr,ddply)
importFrom(plyr,desc)
importFrom(plyr,dlply)
importFrom(plyr,is.discrete)
importFrom(plyr,is.formula)
importFrom(plyr,join)
importFrom(plyr,ldply)
Expand Down
2 changes: 1 addition & 1 deletion R/ggmap-package.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#' @name ggmap
#' @importFrom png readPNG
#' @importFrom jpeg readJPEG
#' @importFrom plyr arrange compact ddply desc dlply is.discrete is.formula join
#' @importFrom plyr arrange compact ddply desc dlply is.formula join
#' ldply llply .
#' @importFrom bitops bitOr bitShiftL bitShiftR bitAnd
#' @importFrom grDevices as.raster extendrange gray rgb
Expand Down
2 changes: 1 addition & 1 deletion R/qmplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ qmplot <- function(x, y, ..., data, zoom, source = "stadia", maptype = "stamen_t
geom[geom == "auto"] <- "qq"
} else if (missing(y)) {
x <- eval(aesthetics$x, data, env)
if (is.discrete(x)) {
if (is.factor(x) || is.character(x) || is.logical(x)) {
geom[geom == "auto"] <- "bar"
} else {
geom[geom == "auto"] <- "histogram"
Expand Down