0

在德雷克中,我想获取一个目标的并在 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界面: 如何在德雷克中引用以前的目标?

4

1 回答 1

1

drake要求您在运行之前提前明确声明所有目标make()。所以很遗憾,您建议的功能目前不可用。许多其他人都提出了要求,这是我们未来发展目标的一部分drake。然而,这是迄今为止最大的实施挑战,我不知道它何时可用。map()和朋友可能更近了一步。

于 2019-03-02T18:30:32.570 回答