Browse Source

pokemon README!

pull/3/head
boB Rudis 8 years ago
parent
commit
5a89c667da
  1. 9
      DESCRIPTION
  2. 4
      README.Rmd
  3. 76
      README.html
  4. 6
      README.md

9
DESCRIPTION

@ -1,8 +1,8 @@
Package: ggalt
Title: Extra Coordinate Systems, Geoms and Statistical Transformations for 'ggplot2'
Version: 0.1.2.9000
Title: Extra Coordinate Systems, Geoms, Statistical Transformations and Scales for 'ggplot2'
Version: 0.1.5.9000
Authors@R: c(person("Bob", "Rudis", email = "bob@rudis.net", role = c("aut", "cre")))
Description: A compendium of 'geoms', 'coords' and 'stats' for 'ggplot2',
Description: A compendium of 'geoms', 'coords', 'stats' & scales for 'ggplot2',
including splines, 1d and 2d densities, univariate average shifted histograms
and a new map coordinate system based on the 'PROJ.4'-library.
Depends:
@ -31,6 +31,7 @@ Imports:
gtable,
ash,
maps,
MASS
MASS,
ggplot2
RoxygenNote: 5.0.1
VignetteBuilder: knitr

4
README.Rmd

@ -37,9 +37,13 @@ The following functions are implemented:
- `geom_bkde2d` : Contours from a 2d density estimate. (uses `KernSmooth::bkde2D`)
- `stat_bkde2d` : Contours from a 2d density estimate. (uses `KernSmooth::bkde2D`)
- `stat_ash` : Compute and display a univariate averaged shifted histogram (polynomial kernel) (uses `ash::ash1`/`ash::bin1`)
- `scale_color_pokemon` :
- `scale_fill_pokemon` : discrete pokemon scales (data taken from the hard work by the <http://www.pokegraphs.com/>)
### News
- Version 0.1.5.9000 - Pokemon discrete color scales!
- Version 0.1.2.9000 - Fixed bug with limits not working thx to @mstrimas
- Version 0.1.1 - CRAN!
- Version 0.1.0.9000 - Tweaks for ggplot2 2.0 release

76
README.html

File diff suppressed because one or more lines are too long

6
README.md

@ -23,9 +23,13 @@ The following functions are implemented:
- `geom_bkde2d` : Contours from a 2d density estimate. (uses `KernSmooth::bkde2D`)
- `stat_bkde2d` : Contours from a 2d density estimate. (uses `KernSmooth::bkde2D`)
- `stat_ash` : Compute and display a univariate averaged shifted histogram (polynomial kernel) (uses `ash::ash1`/`ash::bin1`)
- `scale_color_pokemon` :
- `scale_fill_pokemon` : discrete pokemon scales (data taken from the hard work by the <http://www.pokegraphs.com/>)
### News
- Version 0.1.5.9000 - Pokemon discrete color scales!
- Version 0.1.2.9000 - Fixed bug with limits not working thx to @mstrimas
- Version 0.1.1 - CRAN!
- Version 0.1.0.9000 - Tweaks for ggplot2 2.0 release
@ -57,7 +61,7 @@ library(ggalt)
# current verison
packageVersion("ggalt")
#> [1] '0.1.1.9000'
#> [1] '0.1.5.9000'
set.seed(1492)
dat <- data.frame(x=c(1:10, 1:10, 1:10),

Loading…
Cancel
Save