Skip to content

Commit deb1936

Browse files
committed
Update urls
1 parent c294bff commit deb1936

File tree

6 files changed

+20
-35
lines changed

6 files changed

+20
-35
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ Suggests:
4747
Remotes: hadley/scales
4848
Enhances: sp
4949
License: GPL-2 | file LICENSE
50-
URL: http://ggplot2.org, https://github.com/hadley/ggplot2
51-
BugReports: https://github.com/hadley/ggplot2/issues
50+
URL: http://ggplot2.tidyverse.org, https://github.com/tidyverse/ggplot2
51+
BugReports: https://github.com/tidyverse/ggplot2/issues
5252
LazyData: true
5353
Collate:
5454
'ggproto.r'

R/ggplot2.r

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
1-
#' ggplot2: An Implementation of the Grammar of Graphics
2-
#'
3-
#' ggplot2 is a system for declaratively creating graphics. You provide the
4-
#' data and tell ggplot2 how to map variables to aesthetics. ggplot2 is a
5-
#' complete plotting system and is quite different to other graphics systems in
6-
#' R like base graphics and lattice. If you've never used ggplot2 before, I
7-
#' recomend starting with a comprehensive introduction such as
8-
#' \url{http://r4ds.had.co.nz/data-visualisation.html}. For more
9-
#' documentation and examples, see see \url{http://ggplot2.org}.
10-
#'
11-
#' @examples
12-
#' ggplot(mpg, aes(displ, cty)) +
13-
#' geom_point()
1+
#' @keywords internal
142
"_PACKAGE"
153

164
#' @import scales grid gtable

R/ggproto.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ ggproto <- function(`_class` = NULL, `_inherit` = NULL, ...) {
3838
}
3939

4040
# R <3.1.2 will error when list2env() is given an empty list, so we need to
41-
# check length. https://github.com/hadley/ggplot2/issues/1444
41+
# check length. https://github.com/tidyverse/ggplot2/issues/1444
4242
if (length(members) > 0) {
4343
list2env(members, envir = e)
4444
}

R/zzz.r

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
tips <- c(
55
"Need help? Try the ggplot2 mailing list: http://groups.google.com/group/ggplot2.",
6-
"Find out what's changed in ggplot2 at http://github.com/hadley/ggplot2/releases.",
6+
"Find out what's changed in ggplot2 at http://github.com/tidyverse/ggplot2/releases.",
77
"Use suppressPackageStartupMessages() to eliminate package startup messages.",
88
"Stackoverflow is a great place to get help: http://stackoverflow.com/tags/ggplot2.",
99
"Need help getting started? Try the cookbook for R: http://www.cookbook-r.com/Graphs/",

man/ggplot2-package.Rd

Lines changed: 11 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/releases/ggplot2-2-2-0.Rmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,16 @@ knitr::opts_chunk$set(
2121
)
2222
```
2323

24-
I'm planning to release ggplot2 2.2.0 in early November. In preparation, I'd like to announce that a release candidate is now available: version 2.1.0.9001. Please try it out, and file an [issue on GitHub](https://github.com/hadley/ggplot2/issues) if you discover any problems. I hope we can find and fix any major issues before the official release.
24+
I'm planning to release ggplot2 2.2.0 in early November. In preparation, I'd like to announce that a release candidate is now available: version 2.1.0.9001. Please try it out, and file an [issue on GitHub](https://github.com/tidyverse/ggplot2/issues) if you discover any problems. I hope we can find and fix any major issues before the official release.
2525

2626
Install the pre-release version with:
2727

2828
```{r, eval = FALSE}
2929
# install.packages("devtools")
30-
devtools::install_github("hadley/ggplot2")
30+
devtools::install_github("tidyverse/ggplot2")
3131
```
3232

33-
If you discover a major bug that breaks your plots, please [file a minimal reprex](https://github.com/hadley/ggplot2/issues), and then roll back to the released version with:
33+
If you discover a major bug that breaks your plots, please [file a minimal reprex](https://github.com/tidyverse/ggplot2/issues), and then roll back to the released version with:
3434

3535
```{r, eval = FALSE}
3636
install.packages("ggplot2")
@@ -210,4 +210,4 @@ ggplot(avg_price) +
210210
geom_col(aes(x = cut, y = price, fill = fct_rev(color)))
211211
```
212212

213-
[news.md]: https://github.com/hadley/ggplot2/blob/master/NEWS.md
213+
[news.md]: https://github.com/tidyverse/ggplot2/blob/master/NEWS.md

0 commit comments

Comments
 (0)