在德雷克中,我想获取一个目标的值并在 a 中使用它们map
来创建更多目标。在下面的示例中,有没有办法让y2
实际成为三个目标,就像它一样y3
?我知道拥有实际值与稍后将评估的目标有很大不同,所以也许这是不可能的。
x_vals = as.numeric(seq_len(3))
add_1 <- function(x) {
print(length(x))
x + 1
}
plan <- drake::drake_plan(
x1 = x_vals,
# Runs, as expected, on the whole vector at once
y1 = add_1(x1),
# Runs on the whole vector, despite the map()
y2 = target(add_1(z), transform=map(z=x1)),
# Makes three separate targets, runs the function on each element
y3 = target(add_1(z), transform=map(z=!!x_vals))
)
drake::make(plan)
#> target x1
#> target y3_1
#> [1] 1
#> target y3_2
#> [1] 1
#> target y3_3
#> [1] 1
#> target y1
#> [1] 3
#> target y2_x1
#> [1] 3
我的问题与这个密切相关,但我想使用新map
界面:
如何在德雷克中引用以前的目标?