diff --git a/README.Rmd b/README.Rmd index e6cc7ed..f18cd81 100644 --- a/README.Rmd +++ b/README.Rmd @@ -16,6 +16,9 @@ fig.retina = 2, fig.path = "README_figs/README-" ) ``` +[](http://www.repostatus.org/#active) +[](http://cran.r-project.org/web/packages/ggalt) + `ggalt` : Alternate/Extra 'Geoms', 'Stats' and 'Coords' for 'ggplot2' @@ -36,6 +39,7 @@ The following functions are implemented: ### News +- Version 0.1.1 released - CRAN! - Version 0.1.0.9000 released - Tweaks for ggplot2 2.0 release - Version 0.0.4.9000 released - `stat_ash` - Version 0.0.3.9000 released - `coord_proj`! (requires my github copy of ggplot2 for now) @@ -48,7 +52,8 @@ The following functions are implemented: ```{r eval=FALSE} # you'll want to see the vignettes, trust me install.packages("ggplot2") -devtools::install_github("hrbrmstr/ggalt") +install.packages("ggalt") +# OR: devtools::install_github("hrbrmstr/ggalt") ``` ```{r echo=FALSE, message=FALSE, warning=FALSE, error=FALSE} @@ -181,7 +186,6 @@ m + stat_bkde2d(bandwidth=c(0.5, 4), aes(fill = ..level..), geom = "polygon") ### `coord_proj` LIVES! (still needs work) ```{r coord_proj} -# devtools::install_github("hrbrmstr/ggplot2") world <- map_data("world") world <- world[world$region != "Antarctica",] diff --git a/README.html b/README.html index 4ea178b..f440c23 100644 --- a/README.html +++ b/README.html @@ -62,6 +62,7 @@ img { +
ggalt
: Alternate/Extra ‘Geoms’, ‘Stats’ and ‘Coords’ for ‘ggplot2’
A package containing additional/alternate ‘geoms’, ‘coords’ and ‘stats’ for use with ggplot2 2.0+.
The first three forays into this brave, new ggplot2
world are splines! and being able to use the (much better) KernSmooth::bkde
and KernSmooth::bkde2D
for density plots and an initial port of the (still needing work) coord_proj
.
stat_ash
coord_proj
! (requires my github copy of ggplot2 for now)# you'll want to see the vignettes, trust me
install.packages("ggplot2")
-devtools::install_github("hrbrmstr/ggalt")
+install.packages("ggalt")
+# OR: devtools::install_github("hrbrmstr/ggalt")
coord_proj
LIVES! (still needs work)# devtools::install_github("hrbrmstr/ggplot2")
-world <- map_data("world")
-#>
-#> # ATTENTION: maps v3.0 has an updated 'world' map. #
-#> # Many country borders and names have changed since 1990. #
-#> # Type '?world' or 'news(package="maps")'. See README_v3. #
+world <- map_data("world")
world <- world[world$region != "Antarctica",]
gg <- ggplot()
@@ -251,7 +249,7 @@ gg <- gg + geom_map(data=world, map=world,
aes(x=long, y=lat, map_id=region))
gg <- gg + coord_proj("+proj=wintri")
gg
-
+