forked from tidyverse/purrr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreduce.R
561 lines (518 loc) · 16.8 KB
/
reduce.R
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
#' Reduce a list to a single value by iteratively applying a binary function
#'
#' @description
#'
#' `reduce()` is an operation that combines the elements of a vector
#' into a single value. The combination is driven by `.f`, a binary
#' function that takes two values and returns a single value: reducing
#' `f` over `1:3` computes the value `f(f(1, 2), 3)`.
#'
#' @inheritParams map
#' @param .y For `reduce2()` and `accumulate2()`, an additional
#' argument that is passed to `.f`. If `init` is not set, `.y`
#' should be 1 element shorter than `.x`.
#' @param .f For `reduce()`, and `accumulate()`, a 2-argument
#' function. The function will be passed the accumulated value as
#' the first argument and the "next" value as the second argument.
#'
#' For `reduce2()` and `accumulate2()`, a 3-argument function. The
#' function will be passed the accumulated value as the first
#' argument, the next value of `.x` as the second argument, and the
#' next value of `.y` as the third argument.
#'
#' The reduction terminates early if `.f` returns a value wrapped in
#' a [done()].
#'
#' @param .init If supplied, will be used as the first value to start
#' the accumulation, rather than using `.x[[1]]`. This is useful if
#' you want to ensure that `reduce` returns a correct value when `.x`
#' is empty. If missing, and `.x` is empty, will throw an error.
#' @param .dir The direction of reduction as a string, one of
#' `"forward"` (the default) or `"backward"`. See the section about
#' direction below.
#'
#' @section Direction:
#'
#' When `.f` is an associative operation like `+` or `c()`, the
#' direction of reduction does not matter. For instance, reducing the
#' vector `1:3` with the binary function `+` computes the sum `((1 +
#' 2) + 3)` from the left, and the same sum `(1 + (2 + 3))` from the
#' right.
#'
#' In other cases, the direction has important consequences on the
#' reduced value. For instance, reducing a vector with `list()` from
#' the left produces a left-leaning nested list (or tree), while
#' reducing `list()` from the right produces a right-leaning list.
#'
#' @section Life cycle:
#'
#' `reduce_right()` is soft-deprecated as of purrr 0.3.0. Please use
#' the `.dir` argument of `reduce()` instead. Note that the algorithm
#' has changed. Whereas `reduce_right()` computed `f(f(3, 2), 1)`,
#' `reduce(.dir = \"backward\")` computes `f(1, f(2, 3))`. This is the
#' standard way of reducing from the right.
#'
#' To update your code with the same reduction as `reduce_right()`,
#' simply reverse your vector and use a left reduction:
#'
#' ```{r}
#' # Before:
#' reduce_right(1:3, f)
#'
#' # After:
#' reduce(rev(1:3), f)
#' ```
#'
#' `reduce2_right()` is soft-deprecated as of purrr 0.3.0 without
#' replacement. It is not clear what algorithmic properties should a
#' right reduction have in this case. Please reach out if you know
#' about a use case for a right reduction with a ternary function.
#'
#' @seealso [accumulate()] for a version that returns all intermediate
#' values of the reduction.
#' @examples
#' # Reducing `+` computes the sum of a vector while reducing `*`
#' # computes the product:
#' 1:3 %>% reduce(`+`)
#' 1:10 %>% reduce(`*`)
#'
#' # When the operation is associative, the direction of reduction
#' # does not matter:
#' reduce(1:4, `+`)
#' reduce(1:4, `+`, .dir = "backward")
#'
#' # However with non-associative operations, the reduced value will
#' # be different as a function of the direction. For instance,
#' # `list()` will create left-leaning lists when reducing from the
#' # right, and right-leaning lists otherwise:
#' str(reduce(1:4, list))
#' str(reduce(1:4, list, .dir = "backward"))
#'
#' # reduce2() takes a ternary function and a second vector that is
#' # one element smaller than the first vector:
#' paste2 <- function(x, y, sep = ".") paste(x, y, sep = sep)
#' letters[1:4] %>% reduce(paste2)
#' letters[1:4] %>% reduce2(c("-", ".", "-"), paste2)
#'
#' x <- list(c(0, 1), c(2, 3), c(4, 5))
#' y <- list(c(6, 7), c(8, 9))
#' reduce2(x, y, paste)
#'
#'
#' # You can shortcircuit a reduction and terminate it early by
#' # returning a value wrapped in a done(). In the following example
#' # we return early if the result-so-far, which is passed on the LHS,
#' # meets a condition:
#' paste3 <- function(out, input, sep = ".") {
#' if (nchar(out) > 4) {
#' return(done(out))
#' }
#' paste(out, input, sep = sep)
#' }
#' letters %>% reduce(paste3)
#'
#' # Here the early return branch checks the incoming inputs passed on
#' # the RHS:
#' paste4 <- function(out, input, sep = ".") {
#' if (input == "j") {
#' return(done(out))
#' }
#' paste(out, input, sep = sep)
#' }
#' letters %>% reduce(paste4)
#' @export
reduce <- function(.x, .f, ..., .init, .dir = c("forward", "backward")) {
reduce_impl(.x, .f, ..., .init = .init, .dir = .dir)
}
#' @rdname reduce
#' @export
reduce2 <- function(.x, .y, .f, ..., .init) {
reduce2_impl(.x, .y, .f, ..., .init = .init, .left = TRUE)
}
reduce_impl <- function(.x, .f, ..., .init, .dir, .acc = FALSE) {
left <- arg_match(.dir, c("forward", "backward")) == "forward"
out <- reduce_init(.x, .init, left = left)
idx <- reduce_index(.x, .init, left = left)
if (.acc) {
acc_out <- accum_init(out, idx, left = left)
acc_idx <- accum_index(acc_out, left = left)
}
.f <- as_mapper(.f, ...)
# Left-reduce passes the result-so-far on the left, right-reduce
# passes it on the right. A left-reduce produces left-leaning
# computation trees while right-reduce produces right-leaning trees.
if (left) {
fn <- .f
} else {
fn <- function(x, y, ...) .f(y, x, ...)
}
for (i in seq_along(idx)) {
prev <- out
elt <- .x[[idx[[i]]]]
if (has_force_and_call) {
out <- forceAndCall(2, fn, out, elt, ...)
} else {
out <- fn(out, elt, ...)
}
if (is_done_box(out)) {
return(reduce_early(out, prev, .acc, acc_out, acc_idx[[i]], left))
}
if (.acc) {
acc_out[[acc_idx[[i]]]] <- out
}
}
if (.acc) {
acc_out
} else {
out
}
}
reduce_early <- function(out, prev, acc, acc_out, acc_idx, left = TRUE) {
if (is_done_box(out, empty = TRUE)) {
out <- prev
offset <- if (left) -1L else 1L
} else {
out <- unbox(out)
offset <- 0L
}
if (!acc) {
return(out)
}
acc_idx <- acc_idx + offset
acc_out[[acc_idx]] <- out
if (left) {
acc_out[seq_len(acc_idx)]
} else {
acc_out[seq(acc_idx, length(acc_out))]
}
}
reduce_init <- function(x, init, left = TRUE) {
if (!missing(init)) {
init
} else {
if (is_empty(x)) {
stop("`.x` is empty, and no `.init` supplied", call. = FALSE)
} else if (left) {
x[[1]]
} else {
x[[length(x)]]
}
}
}
reduce_index <- function(x, init, left = TRUE) {
n <- length(x)
if (left) {
if (missing(init)) {
seq_len2(2L, n)
} else {
seq_len(n)
}
} else {
if (missing(init)) {
rev(seq_len(n - 1L))
} else {
rev(seq_len(n))
}
}
}
accum_init <- function(first, idx, left) {
len <- length(idx) + 1L
out <- new_list(len)
if (left) {
out[[1]] <- first
} else {
out[[len]] <- first
}
out
}
accum_index <- function(out, left) {
n <- length(out)
if (left) {
seq_len2(2, n)
} else {
rev(seq_len(n - 1L))
}
}
reduce2_impl <- function(.x, .y, .f, ..., .init, .left = TRUE, .acc = FALSE) {
out <- reduce_init(.x, .init, left = .left)
x_idx <- reduce_index(.x, .init, left = .left)
y_idx <- reduce_index(.y, NULL, left = .left)
if (length(x_idx) != length(y_idx)) {
stop("`.y` does not have length ", length(x_idx))
}
.f <- as_mapper(.f, ...)
if (.acc) {
acc_out <- accum_init(out, x_idx, left = .left)
acc_idx <- accum_index(acc_out, left = .left)
}
for (i in seq_along(x_idx)) {
prev <- out
x_i <- x_idx[[i]]
y_i <- y_idx[[i]]
if (has_force_and_call) {
out <- forceAndCall(3, .f, out, .x[[x_i]], .y[[y_i]], ...)
} else {
out <- .f(out, .x[[x_i]], .y[[y_i]], ...)
}
if (is_done_box(out)) {
return(reduce_early(out, prev, .acc, acc_out, acc_idx[[i]]))
}
if (.acc) {
acc_out[[acc_idx[[i]]]] <- out
}
}
if (.acc) {
acc_out
} else {
out
}
}
seq_len2 <- function(start, end) {
if (start > end) {
return(integer(0))
}
start:end
}
#' Accumulate intermediate results of a vector reduction
#'
#' @description
#'
#' `accumulate()` sequentially applies a 2-argument function to elements of a
#' vector. Each application of the function uses the initial value or result
#' of the previous application as the first argument. The second argument is
#' the next value of the vector. The results of each application are
#' returned in a list. The accumulation can optionally terminate before
#' processing the whole vector in response to a `done()` signal returned by
#' the accumulation function.
#'
#' By contrast to `accumulate()`, `reduce()` applies a 2-argument function in
#' the same way, but discards all results except that of the final function
#' application.
#'
#' `accumulate2()` sequentially applies a function to elements of two lists, `.x` and `.y`.
#'
#' @inheritParams map
#'
#' @param .y For `accumulate2()` `.y` is the second argument of the pair. It
#' needs to be 1 element shorter than the vector to be accumulated (`.x`).
#' If `.init` is set, `.y` needs to be one element shorted than the
#' concatenation of the initial value and `.x`.
#'
#' @param .f For `accumulate()` `.f` is 2-argument function. The function will
#' be passed the accumulated result or initial value as the first argument.
#' The next value in sequence is passed as the second argument.
#'
#' For `accumulate2()`, a 3-argument function. The
#' function will be passed the accumulated result as the first
#' argument. The next value in sequence from `.x` is passed as the second argument. The
#' next value in sequence from `.y` is passed as the third argument.
#'
#' The accumulation terminates early if `.f` returns a value wrapped in
#' a [done()].
#'
#' @param .init If supplied, will be used as the first value to start
#' the accumulation, rather than using `.x[[1]]`. This is useful if
#' you want to ensure that `reduce` returns a correct value when `.x`
#' is empty. If missing, and `.x` is empty, will throw an error.
#'
#' @param .dir The direction of accumulation as a string, one of
#' `"forward"` (the default) or `"backward"`. See the section about
#' direction below.
#'
#' @return A vector the same length of `.x` with the same names as `.x`.
#'
#' If `.init` is supplied, the length is extended by 1. If `.x` has
#' names, the initial value is given the name `".init"`, otherwise
#' the returned vector is kept unnamed.
#'
#' If `.dir` is `"forward"` (the default), the first element is the
#' initial value (`.init` if supplied, or the first element of `.x`)
#' and the last element is the final reduced value. In case of a
#' right accumulation, this order is reversed.
#'
#' The accumulation terminates early if `.f` returns a value wrapped
#' in a [done()]. If the done box is empty, the last value is
#' used instead and the result is one element shorter (but always
#' includes the initial value, even when terminating at the first
#' iteration).
#'
#' @inheritSection reduce Direction
#'
#' @section Life cycle:
#'
#' `accumulate_right()` is soft-deprecated in favour of the `.dir`
#' argument as of rlang 0.3.0. Note that the algorithm has
#' slightly changed: the accumulated value is passed to the right
#' rather than the left, which is consistent with a right reduction.
#'
#' @seealso [reduce()] when you only need the final reduced value.
#' @examples
#' # With an associative operation, the final value is always the
#' # same, no matter the direction. You'll find it in the last element for a
#' # backward (left) accumulation, and in the first element for forward
#' # (right) one:
#' 1:5 %>% accumulate(`+`)
#' 1:5 %>% accumulate(`+`, .dir = "backward")
#'
#' # The final value is always equal to the equivalent reduction:
#' 1:5 %>% reduce(`+`)
#'
#' # It is easier to understand the details of the reduction with
#' # `paste()`.
#' accumulate(letters[1:5], paste, sep = ".")
#'
#' # Note how the intermediary reduced values are passed to the left
#' # with a left reduction, and to the right otherwise:
#' accumulate(letters[1:5], paste, sep = ".", .dir = "backward")
#'
#' # `accumulate2()` is a version of `accumulate()` that works with
#' # 3-argument functions and one additional vector:
#' paste2 <- function(x, y, sep = ".") paste(x, y, sep = sep)
#' letters[1:4] %>% accumulate(paste2)
#' letters[1:4] %>% accumulate2(c("-", ".", "-"), paste2)
#'
#'
#' # You can shortcircuit an accumulation and terminate it early by
#' # returning a value wrapped in a done(). In the following example
#' # we return early if the result-so-far, which is passed on the LHS,
#' # meets a condition:
#' paste3 <- function(out, input, sep = ".") {
#' if (nchar(out) > 4) {
#' return(done(out))
#' }
#' paste(out, input, sep = sep)
#' }
#' letters %>% accumulate(paste3)
#'
#' # Note how we get twice the same value in the accumulation. That's
#' # because we have returned it twice. To prevent this, return an empty
#' # done box to signal to accumulate() that it should terminate with the
#' # value of the last iteration:
#' paste3 <- function(out, input, sep = ".") {
#' if (nchar(out) > 4) {
#' return(done())
#' }
#' paste(out, input, sep = sep)
#' }
#' letters %>% accumulate(paste3)
#'
#' # Here the early return branch checks the incoming inputs passed on
#' # the RHS:
#' paste4 <- function(out, input, sep = ".") {
#' if (input == "f") {
#' return(done())
#' }
#' paste(out, input, sep = sep)
#' }
#' letters %>% accumulate(paste4)
#'
#'
#' # Simulating stochastic processes with drift
#' \dontrun{
#' library(dplyr)
#' library(ggplot2)
#'
#' rerun(5, rnorm(100)) %>%
#' set_names(paste0("sim", 1:5)) %>%
#' map(~ accumulate(., ~ .05 + .x + .y)) %>%
#' map_dfr(~ tibble(value = .x, step = 1:100), .id = "simulation") %>%
#' ggplot(aes(x = step, y = value)) +
#' geom_line(aes(color = simulation)) +
#' ggtitle("Simulations of a random walk with drift")
#' }
#' @export
accumulate <- function(.x, .f, ..., .init, .dir = c("forward", "backward")) {
.dir <- arg_match(.dir, c("forward", "backward"))
.f <- as_mapper(.f, ...)
res <- reduce_impl(.x, .f, ..., .init = .init, .dir = .dir, .acc = TRUE)
names(res) <- accumulate_names(names(.x), .init, .dir)
# FIXME vctrs: This simplification step is for compatibility with
# the `base::Reduce()` implementation in earlier purrr versions
if (all(map_int(res, length) == 1L)) {
res <- unlist(res, recursive = FALSE)
}
res
}
#' @rdname accumulate
#' @export
accumulate2 <- function(.x, .y, .f, ..., .init) {
reduce2_impl(.x, .y, .f, ..., .init = .init, .acc = TRUE)
}
accumulate_names <- function(nms, init, dir) {
if (is_null(nms)) {
return(NULL)
}
if (!missing(init)) {
nms <- c(".init", nms)
}
if (dir == "backward") {
nms <- rev(nms)
}
nms
}
#' Reduce from the right (retired)
#'
#' @description
#'
#' \Sexpr[results=rd, stage=render]{purrr:::lifecycle("soft-deprecated")}
#'
#' These functions are retired as of purrr 0.3.0. Please use the
#' `.dir` argument of [reduce()] instead, or reverse your vectors
#' and use a left reduction.
#'
#' @inheritParams reduce
#'
#' @keywords internal
#' @export
reduce_right <- function(.x, .f, ..., .init) {
signal_soft_deprecated(paste_line(
"`reduce_right()` is soft-deprecated as of purrr 0.3.0.",
"Please use the new `.dir` argument of `reduce()` instead.",
"",
" # Before:",
" reduce_right(1:3, f)",
"",
" # After:",
" reduce(1:3, f, .dir = \"backward\") # New algorithm",
" reduce(rev(1:3), f) # Same algorithm as reduce_right()",
""
))
.x <- rev(.x) # Compatibility
reduce_impl(.x, .f, ..., .dir = "forward", .init = .init)
}
#' @rdname reduce_right
#' @export
reduce2_right <- function(.x, .y, .f, ..., .init) {
signal_soft_deprecated(paste_line(
"`reduce2_right()` is soft-deprecated as of purrr 0.3.0.",
"Please reverse your vectors and use `reduce2()` instead.",
"",
" # Before:",
" reduce2_right(x, y, f)",
"",
" # After:",
" reduce2(rev(x), rev(y), f)",
""
))
reduce2_impl(.x, .y, .f, ..., .init = .init, .left = FALSE)
}
#' @rdname reduce_right
#' @export
accumulate_right <- function(.x, .f, ..., .init) {
signal_soft_deprecated(paste_line(
"`accumulate_right()` is soft-deprecated as of purrr 0.3.0.",
"Please use the new `.dir` argument of `accumulate()` instead.",
"",
" # Before:",
" accumulate_right(x, f)",
"",
" # After:",
" accumulate(x, f, .dir = \"backward\")",
""
))
# Note the order of arguments is switched
f <- function(y, x) {
.f(x, y, ...)
}
accumulate(.x, f, .init = .init, .dir = "backward")
}