-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathfuture-map2.R
More file actions
277 lines (265 loc) · 5.79 KB
/
Copy pathfuture-map2.R
File metadata and controls
277 lines (265 loc) · 5.79 KB
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
#' Map over multiple inputs simultaneously via futures
#'
#' These functions work the same as [purrr::map2()] and its variants,
#' but allow you to map in parallel. Note that "parallel" as described in purrr
#' is just saying that you are working with multiple inputs, and parallel in
#' this case means that you can work on multiple inputs and process them all in
#' parallel as well.
#'
#' @inheritParams future_map
#'
#' @param .x,.y A pair of vectors, usually the same length. If not, a vector
#' of length 1 will be recycled to the length of the other.
#'
#' @param .l A list of vectors. The length of `.l` determines the number of
#' arguments that `.f` will be called with. Arguments will be supply by
#' position if unnamed, and by name if named.
#'
#' Vectors of length 1 will be recycled to any length; all other elements
#' must be have the same length.
#'
#' A data frame is an important special case of `.l`. It will cause `.f`
#' to be called once for each row.
#'
#' @param .f A function, specified in one of the following ways:
#'
#' * A named function.
#' * An anonymous function, e.g. `\(x, y) x + y` or `function(x, y) x + y`.
#' * A formula, e.g. `~ .x + .y`. Use `.x` to refer to the current
#' element of `x` and `.y` to refer to the current element of `y`.
#' No longer recommended.
#'
#' @return An atomic vector, list, or data frame, depending on the suffix.
#' Atomic vectors and lists will be named if `.x` or the first element of `.l`
#' is named.
#'
#' If all input is length 0, the output will be length 0. If any input is
#' length 1, it will be recycled to the length of the longest.
#'
#' @export
#' @examples
#' \donttest{plan(multisession, workers = 2)}
#'
#' x <- list(1, 10, 100)
#' y <- list(1, 2, 3)
#' z <- list(5, 50, 500)
#'
#' future_map2(x, y, ~ .x + .y)
#'
#' # Split into pieces, fit model to each piece, then predict
#' by_cyl <- split(mtcars, mtcars$cyl)
#' mods <- future_map(by_cyl, ~ lm(mpg ~ wt, data = .))
#' future_map2(mods, by_cyl, predict)
#'
#' future_pmap(list(x, y, z), sum)
#'
#' # Matching arguments by position
#' future_pmap(list(x, y, z), function(a, b ,c) a / (b + c))
#'
#' # Vectorizing a function over multiple arguments
#' df <- data.frame(
#' x = c("apple", "banana", "cherry"),
#' pattern = c("p", "n", "h"),
#' replacement = c("x", "f", "q"),
#' stringsAsFactors = FALSE
#' )
#'
#' future_pmap(df, gsub)
#' future_pmap_chr(df, gsub)
#'
#' \dontshow{
#' # Close open connections for R CMD Check
#' if (!inherits(plan(), "sequential")) plan(sequential)
#' }
future_map2 <- function(
.x,
.y,
.f,
...,
.options = furrr_options(),
.env_globals = parent.frame(),
.progress = FALSE
) {
furrr_map2_template(
x = .x,
y = .y,
fn = .f,
dots = list(...),
options = .options,
progress = .progress,
type = "list",
purrr_fn_name = "map2",
env_globals = .env_globals
)
}
#' @rdname future_map2
#' @export
future_map2_chr <- function(
.x,
.y,
.f,
...,
.options = furrr_options(),
.env_globals = parent.frame(),
.progress = FALSE
) {
furrr_map2_template(
x = .x,
y = .y,
fn = .f,
dots = list(...),
options = .options,
progress = .progress,
type = "character",
purrr_fn_name = "map2_chr",
env_globals = .env_globals
)
}
#' @rdname future_map2
#' @export
future_map2_dbl <- function(
.x,
.y,
.f,
...,
.options = furrr_options(),
.env_globals = parent.frame(),
.progress = FALSE
) {
furrr_map2_template(
x = .x,
y = .y,
fn = .f,
dots = list(...),
options = .options,
progress = .progress,
type = "double",
purrr_fn_name = "map2_dbl",
env_globals = .env_globals
)
}
#' @rdname future_map2
#' @export
future_map2_int <- function(
.x,
.y,
.f,
...,
.options = furrr_options(),
.env_globals = parent.frame(),
.progress = FALSE
) {
furrr_map2_template(
x = .x,
y = .y,
fn = .f,
dots = list(...),
options = .options,
progress = .progress,
type = "integer",
purrr_fn_name = "map2_int",
env_globals = .env_globals
)
}
#' @rdname future_map2
#' @export
future_map2_lgl <- function(
.x,
.y,
.f,
...,
.options = furrr_options(),
.env_globals = parent.frame(),
.progress = FALSE
) {
furrr_map2_template(
x = .x,
y = .y,
fn = .f,
dots = list(...),
options = .options,
progress = .progress,
type = "logical",
purrr_fn_name = "map2_lgl",
env_globals = .env_globals
)
}
#' @rdname future_map2
#' @export
future_map2_vec <- function(
.x,
.y,
.f,
...,
.ptype = NULL,
.options = furrr_options(),
.env_globals = parent.frame(),
.progress = FALSE
) {
out <- future_map2(
.x = .x,
.y = .y,
.f = .f,
...,
.options = .options,
.env_globals = .env_globals,
.progress = .progress
)
simplify_impl(
out,
ptype = .ptype,
error_arg = "<output>",
error_call = current_env()
)
}
#' @rdname future_map2
#' @export
future_map2_dfr <- function(
.x,
.y,
.f,
...,
.id = NULL,
.options = furrr_options(),
.env_globals = parent.frame(),
.progress = FALSE
) {
if (!rlang::is_installed("dplyr")) {
rlang::abort("`future_map2_dfr()` requires dplyr")
}
res <- future_map2(
.x = .x,
.y = .y,
.f = .f,
...,
.options = .options,
.env_globals = .env_globals,
.progress = .progress
)
dplyr::bind_rows(res, .id = .id)
}
#' @rdname future_map2
#' @export
future_map2_dfc <- function(
.x,
.y,
.f,
...,
.options = furrr_options(),
.env_globals = parent.frame(),
.progress = FALSE
) {
if (!rlang::is_installed("dplyr")) {
rlang::abort("`future_map2_dfc()` requires dplyr")
}
res <- future_map2(
.x = .x,
.y = .y,
.f = .f,
...,
.options = .options,
.env_globals = .env_globals,
.progress = .progress
)
dplyr::bind_cols(res)
}