Skip to content

Commit cc41564

Browse files
committed
Fix more links
1 parent 3cd5e5a commit cc41564

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

NEWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ See `vignette("in-packages")` for a detailed transition guide.
165165

166166
* The first argument of `nest()` has changed from `data` to `.data`.
167167

168-
* `unnest()` uses the [emerging tidyverse standard](https://www.tidyverse.org/articles/2019/01/tibble-2.0.1/#name-repair)
168+
* `unnest()` uses the [emerging tidyverse standard](https://www.tidyverse.org/blog/2019/01/tibble-2.0.1/#name-repair)
169169
to disambiguate unique names. Use `names_repair = tidyr_legacy` to
170170
request the previous approach.
171171

README.Rmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The goal of tidyr is to help you create __tidy data__. Tidy data is data where:
2828
1. Every row is an observation.
2929
1. Every cell is a single value.
3030

31-
Tidy data describes a standard way of storing data that is used wherever possible throughout the [tidyverse](https://tidyverse.org). If you ensure that your data is tidy, you'll spend less time fighting with the tools and more time working on your analysis. Learn more about tidy data in `vignette("tidy-data")`.
31+
Tidy data describes a standard way of storing data that is used wherever possible throughout the [tidyverse](https://tidyverse.org/). If you ensure that your data is tidy, you'll spend less time fighting with the tools and more time working on your analysis. Learn more about tidy data in `vignette("tidy-data")`.
3232

3333
## Installation
3434

@@ -81,7 +81,7 @@ tidyr functions fall into five main categories:
8181

8282
tidyr [supersedes](https://www.tidyverse.org/lifecycle/#superseded) reshape2 (2010-2014) and reshape (2005-2010). Somewhat counterintuitively, each iteration of the package has done less. tidyr is designed specifically for tidying data, not general reshaping (reshape2), or the general aggregation (reshape).
8383

84-
[data.table](http://r-datatable.com/) provides high-performance implementations of `melt()` and `dcast()`
84+
[data.table](https://rdatatable.gitlab.io/data.table) provides high-performance implementations of `melt()` and `dcast()`
8585

8686
If you'd like to read more about data reshaping from a CS perspective, I'd recommend the following three papers:
8787

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ where:
2323
3. Every cell is a single value.
2424

2525
Tidy data describes a standard way of storing data that is used wherever
26-
possible throughout the [tidyverse](https://tidyverse.org). If you
26+
possible throughout the [tidyverse](https://tidyverse.org/). If you
2727
ensure that your data is tidy, you’ll spend less time fighting with the
2828
tools and more time working on your analysis. Learn more about tidy data
2929
in `vignette("tidy-data")`.
@@ -86,8 +86,8 @@ counterintuitively, each iteration of the package has done less. tidyr
8686
is designed specifically for tidying data, not general reshaping
8787
(reshape2), or the general aggregation (reshape).
8888

89-
[data.table](http://r-datatable.com/) provides high-performance
90-
implementations of `melt()` and `dcast()`
89+
[data.table](https://rdatatable.gitlab.io/data.table) provides
90+
high-performance implementations of `melt()` and `dcast()`
9191

9292
If you’d like to read more about data reshaping from a CS perspective,
9393
I’d recommend the following three papers:

cran-comments.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
This is a resubmission with corrected links
2+
3+
---
4+
15
## Test environments
26

37
* OS X install: R 3.5

vignettes/in-packages.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,4 +365,4 @@ nested %>% unnest(any_of("my_data"))
365365
```
366366

367367
[ggplot2-packages]: https://ggplot2.tidyverse.org/dev/articles/ggplot2-in-packages.html
368-
[name-repair]: https://www.tidyverse.org/articles/2019/01/tibble-2.0.1/#name-repair
368+
[name-repair]: https://www.tidyverse.org/blog/2019/01/tibble-2.0.1/#name-repair

vignettes/nest.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ mtcars_nested <- mtcars_nested %>%
9898
mtcars_nested
9999
```
100100

101-
This workflow works particularly well in conjunction with [broom](https://broom.tidyverse.org/), which makes it easy to turn models into tidy data frames which can then be `unnest()`ed to get back to flat data frames. You can see a bigger example in the [broom and dplyr vignette](https://broom.tidyverse.org/articles/broom_and_dplyr.html).
101+
This workflow works particularly well in conjunction with [broom](https://broom.tidymodels.org/), which makes it easy to turn models into tidy data frames which can then be `unnest()`ed to get back to flat data frames. You can see a bigger example in the [broom and dplyr vignette](https://broom.tidymodels.org/articles/broom_and_dplyr.html).

vignettes/rectangle.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ loc %>%
282282

283283
## Sharla Gelfand's discography
284284

285-
We'll finish off with the most complex list, from [Sharla Gelfand's](https://sharla.party/posts/discog-purrr/) discography. We'll start the usual way: putting the list into a single column data frame, and then widening so each component is a column. I also parse the `date_added` column into a real date-time[^readr].
285+
We'll finish off with the most complex list, from [Sharla Gelfand's](https://sharla.party/post/discog-purrr/) discography. We'll start the usual way: putting the list into a single column data frame, and then widening so each component is a column. I also parse the `date_added` column into a real date-time[^readr].
286286

287287
[^readr]: I'd normally use `readr::parse_datetime()` or `lubridate::ymd_hms()`, but I can't here because it's a vignette and I don't want to add a dependency to tidyr just to simplify one example.
288288

0 commit comments

Comments
 (0)