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-" ) ``` +[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/0.1.0/active.svg)](http://www.repostatus.org/#active) +[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/ggalt)](http://cran.r-project.org/web/packages/ggalt) +![downloads](http://cranlogs.r-pkg.org/badges/grand-total/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 { +

Project Status: Active - The project has reached a stable, usable state and is being actively developed. CRAN_Status_Badge downloads

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.

@@ -79,6 +80,7 @@ img {

News

Usage

@@ -101,7 +104,7 @@ library(ggalt) # current verison packageVersion("ggalt") -#> [1] '0.1.1.9000' +#> [1] '0.1.1' set.seed(1492) dat <- data.frame(x=c(1:10, 1:10, 1:10), @@ -238,12 +241,7 @@ m + stat_bkde2d(bandwidth=c(0.5, 4), aes(fill = ..level..), geom = "polygon

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
-

+

Code of Conduct

diff --git a/README.md b/README.md index 7f6f366..217327d 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ +[![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/0.1.0/active.svg)](http://www.repostatus.org/#active) +[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/ggalt)](http://cran.r-project.org/web/packages/ggalt) +![downloads](http://cranlogs.r-pkg.org/badges/grand-total/ggalt) `ggalt` : Alternate/Extra 'Geoms', 'Stats' and 'Coords' for 'ggplot2' @@ -22,6 +25,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) @@ -35,7 +39,8 @@ The following functions are implemented: ```r # 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") ``` @@ -50,7 +55,7 @@ library(ggalt) # current verison packageVersion("ggalt") -#> [1] '0.1.1.9000' +#> [1] '0.1.1' set.seed(1492) dat <- data.frame(x=c(1:10, 1:10, 1:10), @@ -262,12 +267,7 @@ m + stat_bkde2d(bandwidth=c(0.5, 4), aes(fill = ..level..), geom = "polygon") ```r -# 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 <- world[world$region != "Antarctica",] gg <- ggplot() diff --git a/README_figs/README-coord_proj-1.png b/README_figs/README-coord_proj-1.png index d95260f..825b4cb 100644 Binary files a/README_figs/README-coord_proj-1.png and b/README_figs/README-coord_proj-1.png differ