Skip to content

Commit 8945d13

Browse files
committed
Update urls
1 parent 23fd8af commit 8945d13

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Description: Helpers for reordering factor levels (including
1414
levels (including collapsing rare levels into other, 'anonymising',
1515
and manually 'recoding').
1616
License: MIT + file LICENSE
17-
URL: http://forcats.tidyverse.org,
17+
URL: https://forcats.tidyverse.org,
1818
https://github.com/tidyverse/forcats
1919
BugReports: https://github.com/tidyverse/forcats/issues
2020
Depends:

README.Rmd

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ R uses __factors__ to handle categorical variables, variables that have a fixed
2929
* `fct_relevel()`: Changing the order of a factor by hand.
3030
* `fct_lump()`: Collapsing the least/most frequent values of a factor into "other".
3131

32-
You can learn more about each of these in `vignette("forcats")`. If you're new to factors, the best place to start is the [chapter on factors](http://r4ds.had.co.nz/factors.html) in R for Data Science.
32+
You can learn more about each of these in `vignette("forcats")`. If you're new to factors, the best place to start is the [chapter on factors](https://r4ds.had.co.nz/factors.html) in R for Data Science.
3333

3434
## Installation
3535

@@ -88,7 +88,7 @@ starwars %>%
8888

8989
## More resources
9090

91-
For a history of factors, I recommend [_stringsAsFactors: An unauthorized biography_](http://simplystatistics.org/2015/07/24/stringsasfactors-an-unauthorized-biography/) by Roger Peng and [_stringsAsFactors = \<sigh\>_](http://notstatschat.tumblr.com/post/124987394001/stringsasfactors-sigh) by Thomas Lumley. If you want to learn more about other approaches to working with factors and categorical data, I recommend [_Wrangling categorical data in R_](https://peerj.com/preprints/3163/), by Amelia McNamara and Nicholas Horton.
91+
For a history of factors, I recommend [_stringsAsFactors: An unauthorized biography_](https://simplystatistics.org/2015/07/24/stringsasfactors-an-unauthorized-biography/) by Roger Peng and [_stringsAsFactors = \<sigh\>_](https://notstatschat.tumblr.com/post/124987394001/stringsasfactors-sigh) by Thomas Lumley. If you want to learn more about other approaches to working with factors and categorical data, I recommend [_Wrangling categorical data in R_](https://peerj.com/preprints/3163/), by Amelia McNamara and Nicholas Horton.
9292

9393
## Getting help
9494

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ values. Some examples include:
2929

3030
You can learn more about each of these in `vignette("forcats")`. If
3131
you’re new to factors, the best place to start is the [chapter on
32-
factors](http://r4ds.had.co.nz/factors.html) in R for Data Science.
32+
factors](https://r4ds.had.co.nz/factors.html) in R for Data Science.
3333

3434
## Installation
3535

@@ -85,7 +85,7 @@ starwars %>%
8585
count(species)
8686
#> # A tibble: 4 x 2
8787
#> species n
88-
#> <fct> <int>
88+
#> * <fct> <int>
8989
#> 1 Droid 6
9090
#> 2 Gungan 3
9191
#> 3 Human 35
@@ -114,9 +114,9 @@ starwars %>%
114114

115115
For a history of factors, I recommend [*stringsAsFactors: An
116116
unauthorized
117-
biography*](http://simplystatistics.org/2015/07/24/stringsasfactors-an-unauthorized-biography/)
117+
biography*](https://simplystatistics.org/2015/07/24/stringsasfactors-an-unauthorized-biography/)
118118
by Roger Peng and [*stringsAsFactors =
119-
&lt;sigh&gt;*](http://notstatschat.tumblr.com/post/124987394001/stringsasfactors-sigh)
119+
&lt;sigh&gt;*](https://notstatschat.tumblr.com/post/124987394001/stringsasfactors-sigh)
120120
by Thomas Lumley. If you want to learn more about other approaches to
121121
working with factors and categorical data, I recommend [*Wrangling
122122
categorical data in R*](https://peerj.com/preprints/3163/), by Amelia

man/forcats-package.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/forcats.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ knitr::opts_chunk$set(
1515
)
1616
```
1717

18-
The goal of the __forcats__ package is to provide a suite of useful tools that solve common problems with factors. Factors are useful when you have categorical data, variables that have a fixed and known set of values, and when you want to display character vectors in non-alphabetical order. If you want to learn more, the best place to start is the [chapter on factors](http://r4ds.had.co.nz/factors.html) in R for Data Science.
18+
The goal of the __forcats__ package is to provide a suite of useful tools that solve common problems with factors. Factors are useful when you have categorical data, variables that have a fixed and known set of values, and when you want to display character vectors in non-alphabetical order. If you want to learn more, the best place to start is the [chapter on factors](https://r4ds.had.co.nz/factors.html) in R for Data Science.
1919

2020
## Ordering by frequency
2121

0 commit comments

Comments
 (0)