How to combine multiple drake targets into a single cross target without combining the datasets?
问题 Drake rocks! I have a complex multistage processing problem. The problem can be illustrated with this example. I have 2 processes at level l, and I want all the datasets generated by all the level 1 processes to be processed by a single target at level 2. The code below does what I want, but I have to repeat the code at level 2, and in my complex situation, this seems wrong. library(drake) library(tidyverse) f_process1a = function(x) { x } f_process1b = function(x) { x } f_process2 = function