forked from perlatex/R_for_Data_Science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tidyverse_beauty_of_across1.Rmd
622 lines (436 loc) · 14.1 KB
/
tidyverse_beauty_of_across1.Rmd
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
# tidyverse中的across()之美1 {#tidyverse-beauty-of-across1}
dplyr 1.0版本增加了`across()`函数,这个函数集中体现了dplyr宏包的强大和简约,今天我用企鹅数据,来领略它的美。
```{r beauty-of-across-1, message=FALSE, warning=FALSE}
library(tidyverse)
library(palmerpenguins)
penguins
```
看到数据框里有很多缺失值,需要统计每一列缺失值的数量,按照常规的写法
```{r beauty-of-across-2}
penguins %>%
summarise(
na_in_species = sum(is.na(species)),
na_in_island = sum(is.na(island)),
na_in_length = sum(is.na(bill_length_mm)),
na_in_depth = sum(is.na(bill_depth_mm)),
na_in_flipper = sum(is.na(flipper_length_mm)),
na_in_body = sum(is.na(body_mass_g)),
na_in_sex = sum(is.na(sex)),
na_in_year = sum(is.na(year))
)
```
幸亏数据框的列数不够多,只有8列,如果数据框有几百列,那就成体力活了,同时代码复制粘贴也容易出错。想偷懒,我们自然想到用`summarise_all()`,
```{r beauty-of-across-3}
penguins %>%
summarise_all(
~ sum(is.na(.))
)
```
挺好。接着探索,我们想先按企鹅类型分组,然后统计出各体征数据的均值,这个好说,直接写代码
```{r beauty-of-across-4}
penguins %>%
group_by(species) %>%
summarise(
mean_length = mean(bill_length_mm, na.rm = TRUE),
mean_depth = mean(bill_depth_mm, na.rm = TRUE),
mean_flipper = mean(flipper_length_mm, na.rm = TRUE),
mean_body = mean(body_mass_g, na.rm = TRUE)
)
```
或者用`summarise_if()`偷懒
```{r beauty-of-across-5}
d1 <- penguins %>%
group_by(species) %>%
summarise_if(is.numeric, mean, na.rm = TRUE)
d1
```
方法不错,从语义上还算很好理解。但多了一列`year`, 我想在`summarise_if()`中用 `is.numeric & !year`去掉`year`,却没成功。人类的欲望是无穷的,我们还需要统计每组下企鹅的个数,然后合并到一起。因此,我们再接再厉
```{r beauty-of-across-6}
d2 <- penguins %>%
group_by(species) %>%
summarise(
n = n()
)
d2
```
最后合并
```{r beauty-of-across-7}
d1 %>% left_join(d2, by = "species")
```
结果应该没问题,然鹅,总让人感觉怪怪的,过程有点折腾,希望不这么麻烦。
## across()横空出世
`across()`的出现,让这一切变得简单和清晰,上面三步完成的动作,一步搞定
```{r beauty-of-across-8, out.width = '75%', echo = FALSE}
knitr::include_graphics("images/across_cover.jpg")
```
```{r beauty-of-across-9}
penguins %>%
group_by(species) %>%
summarise(
across(where(is.numeric) & !year, mean, na.rm = TRUE),
n = n()
)
```
是不是很强大。大爱Hadley Wickham !!!
## across()函数形式
`across()`函数,它有三个主要的参数:
```{r beauty-of-across-10, eval = FALSE}
across(.cols = , .fns = , .names = )
```
- 第一个参数.cols = ,选取我们要需要的若干列,选取多列的语法与`select()`的语法一致,选择方法非常丰富和人性化
- 基本语法
- `:`,变量在位置上是连续的,可以使用类似 `1:3` 或者` species:island`
- `!`,变量名前加!,意思是求这个变量的补集,等价于去掉这个变量,比如`!species`
- `&` 与 `|`,两组变量集的交集和并集,比如 `is.numeric & !year`, 就是选取数值类型变量,但不包括`year`; 再比如 `is.numeric | is.factor`就是选取数值型变量和因子型变量
- `c()`,选取变量的组合,比如`c(a, b, x)`
- 通过人性化的语句
- `everything()`: 选取所有的变量
- `last_col()`: 选取最后一列,也就说倒数第一列,也可以`last_col(offset = 1L)` 就是倒数第二列
- 通过变量名的特征
- `starts_with()`: 指定一组变量名的前缀,也就把选取具有这一前缀的变量,`starts_with("bill_")`
- `ends_with()`: 指定一组变量名的后缀,也就选取具有这一后缀的变量,`ends_with("_mm")`
- `contains()`: 指定变量名含有特定的字符串,也就是选取含有指定字符串的变量,`ends_with("length")`
- `matches()`: 同上,字符串可以是正则表达式
- 通过字符串向量
- `all_of()`: 选取字符串向量对应的变量名,比如`all_of(c("species", "sex", "year"))`,当然前提是,数据框中要有这些变量,否则会报错。
- `any_of()`: 同`all_of()`,只不过数据框中没有字符串向量对应的变量,也不会报错,比如数据框中没有people这一列,代码`any_of(c("species", "sex", "year", "people"))`也正常运行,挺人性化的
- 通过函数
- 常见的有数据类型函数 `where(is.numeric), where(is.factor), where(is.character), where(is.date)`
- 第二个参数`.fns =`,我们要执行的函数(或者多个函数),函数的语法有三种形式可选:
- A function, e.g. `mean`.
- A purrr-style lambda, e.g. `~ mean(.x, na.rm = TRUE)`
- A list of functions/lambdas, e.g. `list(mean = mean, n_miss = ~ sum(is.na(.x))`
- 第三个参数`.names =`, 如果`.fns`是单个函数就默认保留原来数据列的名称,即`"{.col}"` ;如果`.fns`是多个函数,就在数据列的列名后面跟上函数名,比如`"{.col}_{.fn}"`;当然,我们也可以简单调整列名和函数之间的顺序或者增加一个标识的字符串,比如弄成`"{.fn}_{.col}"`,`"{.col}_{.fn}_aa"`
## across()应用举例
下面通过一些小案例,继续呈现`across()`函数的功能
### 求每一列的缺失值数量
就是本章开始的需求
```{r beauty-of-across-11, eval=FALSE}
penguins %>%
summarise(
na_in_species = sum(is.na(species)),
na_in_island = sum(is.na(island)),
na_in_length = sum(is.na(bill_length_mm)),
na_in_depth = sum(is.na(bill_depth_mm)),
na_in_flipper = sum(is.na(flipper_length_mm)),
na_in_body = sum(is.na(body_mass_g)),
na_in_sex = sum(is.na(sex)),
na_in_year = sum(is.na(year))
)
```
```{r beauty-of-across-12}
# using across()
penguins %>%
summarise(
across(everything(), function(x) sum(is.na(x)))
)
# or
penguins %>%
summarise(
across(everything(), ~ sum(is.na(.)))
) %>%
pivot_longer( cols = everything() )
```
### 每个类型变量下有多少组?
```{r beauty-of-across-13}
penguins %>%
summarise(
distinct_species = n_distinct(species),
distinct_island = n_distinct(island),
distinct_sex = n_distinct(sex)
)
# using across()
penguins %>%
summarise(
across(c(species, island, sex), n_distinct)
)
```
### 多列多个统计函数
```{r beauty-of-across-14}
penguins %>%
group_by(species) %>%
summarise(
length_mean = mean(bill_length_mm, na.rm = TRUE),
length_sd = sd(bill_length_mm, na.rm = TRUE),
depth_mean = mean(bill_depth_mm, na.rm = TRUE),
depth_sd = sd(bill_depth_mm, na.rm = TRUE),
flipper_mean = mean(flipper_length_mm, na.rm = TRUE),
flipper_sd = sd(flipper_length_mm, na.rm = TRUE),
n = n()
)
# using across()
penguins %>%
group_by(species) %>%
summarise(
across(ends_with("_mm"), list(mean = mean, sd = sd), na.rm = TRUE),
n = n()
)
```
### 不同分组下数据变量的多个分位数
事实上,这里是`across()`与`summarise()`的强大结合起来
```{r beauty-of-across-15}
penguins %>%
group_by(species, island) %>%
summarise(
prob = c(.25, .75),
length = quantile(bill_length_mm, prob, na.rm = TRUE),
depth = quantile(bill_depth_mm, prob, na.rm = TRUE),
flipper = quantile(flipper_length_mm, prob, na.rm = TRUE)
)
# using across()
penguins %>%
group_by(species, island) %>%
summarise(
prob = c(.25, .75),
across(
c(bill_length_mm, bill_depth_mm, flipper_length_mm),
~ quantile(., prob, na.rm = TRUE)
)
)
# or
penguins %>%
group_by(species, island) %>%
summarise(
prob = c(.25, .75),
across(where(is.numeric) & !year, ~ quantile(., prob, na.rm = TRUE))
)
```
### 不同分组下更复杂的统计
```{r beauty-of-across-16}
# using across()
penguins %>%
group_by(species) %>%
summarise(
n = n(),
across(starts_with("bill_"), mean, na.rm = TRUE),
Area = mean(bill_length_mm * bill_depth_mm, na.rm = TRUE),
across(ends_with("_g"), mean, na.rm = TRUE),
)
```
### 数据标准化处理
```{r beauty-of-across-17}
std <- function(x) {
(x - mean(x, na.rm = TRUE)) / sd(x, na.rm = TRUE)
}
# using across()
penguins %>%
summarise(
across(where(is.numeric), std),
across(where(is.character), as.factor)
)
# using across() and purrr style
penguins %>%
drop_na() %>%
summarise(
across(starts_with("bill_"), ~ (.x - mean(.x)) / sd(.x))
)
```
### 数据对数化处理
```{r beauty-of-across-18}
# using across()
penguins %>%
drop_na() %>%
mutate(
across(where(is.numeric), log),
across(where(is.character), as.factor)
)
# using across()
penguins %>%
drop_na() %>%
mutate(
across(where(is.numeric), .fns = list(log = log), .names = "{.fn}_{.col}"),
across(where(is.character), as.factor)
)
```
### 案例:小于0的值,替换成NA
```{r}
test <- tibble(
Staff.Confirmed = c(0, 1, -999),
Residents.Confirmed = c(12, -192, 0)
)
```
```{r}
test %>%
mutate(
across(contains("Confirmed"), ~if_else(.x < 0, NA_real_, .x), .names = "res_{.col}")
)
```
或者
```{r}
na_if_negative <- function(x) {
x[x < 0] <- NA
x
}
test %>%
mutate(
across(contains("Confirmed"), na_if_negative, .names = "res_{.col}")
)
```
### 在分组建模中与`cur_data()`配合使用
```{r beauty-of-across-19}
penguins %>%
group_by(species) %>%
summarise(
broom::tidy(lm(bill_length_mm ~ bill_depth_mm, data = cur_data()))
)
penguins %>%
group_by(species) %>%
summarise(
broom::tidy(lm(bill_length_mm ~ ., data = cur_data() %>% select(is.numeric)))
)
penguins %>%
group_by(species) %>%
summarise(
broom::tidy(lm(bill_length_mm ~ .,
data = cur_data() %>% transmute(across(is.numeric))
))
)
penguins %>%
group_by(species) %>%
summarise(
broom::tidy(lm(bill_length_mm ~ ., data = across(is.numeric)))
)
```
### 与`cur_column()`配合使用
每一列乘以各自的系数
```{r beauty-of-across-20}
df <- tibble(x = 1:3, y = 3:5, z = 5:7)
mult <- list(x = 1, y = 10, z = 100)
df %>%
mutate(across(all_of(names(mult)), ~ .x * mult[[cur_column()]]))
```
每一列乘以各自的权重
```{r}
df <- tibble(x = 1:3, y = 3:5, z = 5:7)
weights <- list(x = 0.2, y = 0.3, z = 0.5)
df %>%
mutate(
across(all_of(names(weights)),
list(wt = ~ .x * weights[[cur_column()]]),
.names = "{col}.{fn}"
)
)
```
每一列有各自的阈值,如果在阈值之上为1,否则为 0
```{r}
df <- tibble(x = 1:3, y = 3:5, z = 5:7)
cutoffs <- list(x = 2, y = 3, z = 7)
df %>% mutate(
across(all_of(names(cutoffs)), ~ if_else(.x > cutoffs[[cur_column()]], 1, 0))
)
```
- 来一个案例
```{r}
# 要求 x1_intercept + x1_value * x1_slope --> x1_yhat
# 要求 x2_intercept + x2_value * x2_slope --> x2_yhat
library(stringr)
df <- tibble(
x1_intercept = c(0.1850, 0.1518), x2_intercept = c(0.2109, 0.3370),
x1_value = c(0.0098, 0.0062), x2_value = c(0.0095, 0.0060),
x1_slope = c(0.1234, 0.1241), x2_slope = c(0.1002, 0.3012),
)
df
df %>%
mutate(
across(
.cols = ends_with("_intercept"),
.fns = ~ . + get(str_replace(cur_column(), "intercept", "value")) *
get(str_replace(cur_column(), "intercept", "slope")),
.names = "{.col}_yhat"
)
) %>%
rename_with( ~ str_remove(., "_intercept"), ends_with("_yhat"))
```
- 再来一个案例
```{r}
df <- tibble(
var_A_baseline = c(1, 2, 3, 4, 5),
var_B_baseline = c(4, 1, 2, 3, 5),
var_A_followup = c(3, 5, 4, 1, 2),
var_B_followup = c(2, 5, 1, 3, 4)
)
# 需求 var_*_followup - var_*_baseline
df %>%
mutate(
across(
ends_with("_followup"),
~ . - get(sub("_followup", "_baseline", cur_column()))
)
)
```
### .names参数也可用函数
```{r}
penguins %>%
summarise(
across(starts_with("bill"),
.fns = list(mean = ~ mean(.x, na.rm = TRUE)),
.names = "{.col}_{.fn}"
)
)
penguins %>%
summarise(
across(starts_with("bill"),
.fns = list(mean = ~ mean(.x, na.rm = TRUE)),
.names = "{stringr::str_remove(.col, '_mm')}_{.fn}"
)
)
```
### 与`c_across()`配合也挺默契
在一行中的占比
```{r beauty-of-across-21}
df <- tibble(x = 1:3, y = 3:5, z = 5:7)
df %>%
rowwise() %>%
mutate(total = sum(c_across(x:z))) %>%
ungroup() %>%
mutate(across(x:z, ~ . / total))
```
更神奇的方法,请看第 \@ref(tidyverse-beauty-of-across4) 章。
### 案例:替换一行中最大的值
看一行中哪个最大,最大的变为1,其余的变为0
```{r}
df
```
```{r beauty-of-across-25}
replace_rowwise_max <- function(vec) {
if (!is.vector(vec)) {
stop("input of replace_col_max must be vector.")
}
if_else(vec == max(vec), 1L, 0L)
}
df %>%
rowwise() %>%
mutate(
new = list(replace_rowwise_max(c_across(everything())))
) %>%
unnest_wider(new, names_sep = "_")
```
```{r}
df %>%
purrr::pmap_dfr(
~`[<-`( c(...), seq_along(c(...)), if_else( c(...) == max(c(...)), 1, 0 ))
)
```
最风骚的是
```{r}
df %>%
rowwise() %>%
mutate(
across(x:z, ~ if_else(.x == max(c_across(x:z)), 1, 0))
)
```
## across()总结
我们看到了,`across()`函数在`summarise()/mutate()/transmute()/condense()`中使用,它能实现以下几个功能:
- 数据框中的多列执行相同操作
- 不同性质的操作,有时可以一起写出,不用再`left_join()`
```{r beauty-of-across-22, out.width = '90%', echo = FALSE, fig.cap = "across()函数总结图"}
knitr::include_graphics("images/across.png")
```
```{r beauty-of-across-23, echo = F}
# remove the objects
# ls() %>% stringr::str_flatten(collapse = ", ")
rm(cutoffs, d1, d2, df, mult, std, weights, replace_col_max)
```
```{r beauty-of-across-24, echo = F, message = F, warning = F, results = "hide"}
pacman::p_unload(pacman::p_loaded(), character.only = TRUE)
```