Skip to content

Commit

Permalink
Bump plyr version requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed May 3, 2009
1 parent 089a1c6 commit f67802a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Author: Hadley Wickham <h.wickham@gmail.com>
Maintainer: Hadley Wickham <h.wickham@gmail.com>
Description: An implementation of the grammar of graphics in R. It combines the advantages of both base and lattice graphics: conditioning and shared axes are handled automatically, and you can still build up a plot step by step from multiple data sources. It also implements a sophisticated multidimensional conditioning system and a consistent interface to map data to aesthetic attributes. See the ggplot2 website for more information, documentation and examples.
Depends: R (>= 2.7)
Imports: reshape (>= 0.8.0), plyr (>= 0.1.6), splines, MASS, RColorBrewer, grid, proto
Imports: reshape (>= 0.8.0), plyr (>= 0.1.8), splines, MASS, RColorBrewer, grid, proto
Suggests: quantreg, Hmisc, mapproj, maps, digest, colorspace, hexbin, gpclib, maptools
Extends: sp
License: GPL
Expand Down
3 changes: 2 additions & 1 deletion R/aes.r
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
# all <- sort(unique(c(names(.base_to_ggplot), geom_aes, stat_aes)))
# dput(all)

.all_aesthetics <- c("alpha", "angle", "colour", "fill", "group", "hjust", "label", "linetype", "lower", "middle", "order", "radius", "sample", "shape", "size", "upper", "vjust", "weight", "width", "x", "xend", "xmax", "xmin", "y", "yend", "ymax", "ymin", "z")
.all_aesthetics <- c("adj", "alpha", "angle", "bg", "cex", "col", "color", "colour", "fg", "fill", "group", "hjust", "label", "linetype", "lower", "lty", "lwd", "max", "middle", "min", "order", "pch", "radius", "sample", "shape", "size", "srt", "upper", "vjust", "weight", "width", "x", "xend", "xmax", "xmin", "y", "yend", "ymax", "ymin", "z")


.base_to_ggplot <- c(
"col" = "colour",
Expand Down

0 comments on commit f67802a

Please sign in to comment.