forked from tidyverse/tidyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_pkgdown.yml
142 lines (128 loc) · 3.23 KB
/
_pkgdown.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
url: https://tidyr.tidyverse.org
home:
links:
- text: Learn more
href: https://r4ds.hadley.nz/data-tidy
navbar:
components:
home: ~
intro:
text: Tidy data
href: articles/tidy-data.html
template:
bootstrap: 5
package: tidytemplate
includes:
in_header: |
<script defer data-domain="tidyr.tidyverse.org,all.tidyverse.org" src="https://plausible.io/js/plausible.js"></script>
development:
mode: auto
reference:
- title: Pivoting
description: |
**Pivoting** changes the representation of a rectangular dataset, without
changing the data inside of it. See `vignette("pivot")` for more details
and examples.
contents:
- pivot_longer
- pivot_wider
- title: Rectangling
description: |
**Rectangling** turns deeply nested lists into tidy tibbles.
See `vignette("rectangle")` for more details and examples.
contents:
- unnest_longer
- unnest_wider
- unnest
- hoist
- title: Character vectors
description: |
Multiple variables are sometimes pasted together into a single column,
and these tools help you separate back out into individual columns.
contents:
- separate_longer_delim
- separate_wider_delim
- unite
- title: Missing values
description: |
Tools for converting between implicit (absent rows) and explicit (`NA`)
missing values, and for handling explicit `NA`s.
contents:
- complete
- drop_na
- expand
- expand_grid
- fill
- full_seq
- replace_na
- title: Miscellanea
contents:
- chop
- pack
- uncount
- nest
- title: Data
contents:
- billboard
- cms_patient_experience
- construction
- fish_encounters
- household
- relig_income
- smiths
- table1
- us_rent_income
- who
- world_bank_pop
- title: Superseded
description: |
Superseded functions have been replaced by superior solutions, but
due to their widespread use will not go away. However, they will not
get any new features and will only receive critical bug fixes.
contents:
- extract
- separate
- separate_rows
- spread
- gather
- nest_legacy
articles:
- title: Tidying tools
navbar: ~
contents:
- pivot
- rectangle
- nest
- title: Theory
contents:
- tidy-data
- title: Developer
contents:
- programming
- in-packages
news:
releases:
- text: "Version 1.3.0"
href: https://www.tidyverse.org/blog/2023/01/tidyr-1-3-0/
- text: "Version 1.2.0"
href: https://www.tidyverse.org/blog/2022/02/tidyr-1-2-0/
- text: "Version 1.1.0"
href: https://www.tidyverse.org/blog/2020/05/tidyr-1.1.0/
- text: "Version 1.0.0"
href: https://www.tidyverse.org/articles/2019/09/tidyr-1-0-0/
- text: "Version 0.8.0"
href: https://www.tidyverse.org/articles/2018/02/tidyr-0-8-0/
- text: "Version 0.7.0"
href: https://www.tidyverse.org/articles/2017/08/tidyr-0.7.0/
- text: "Version 0.6.0"
href: https://posit.co/blog/tidyr-0-6-0/
- text: "Version 0.5.0"
href: https://posit.co/blog/tidyr-0-5-0/
- text: "Version 0.4.0"
href: https://posit.co/blog/tidyr-0-4-0/
- text: "Version 0.3.0"
href: https://posit.co/blog/tidyr-0-3-0/
- text: "Version 0.2.0"
href: https://posit.co/blog/tidyr-0-2-0/
- text: "Version 0.1.0"
href: https://posit.co/blog/introducing-tidyr/