Takes a workflow object and reruns it.
RerunWorkflow(workflow, from = NULL)
workflow | A zoonWorkflow object from a previous zoon analysis |
---|---|
from | Which modules should be run. If NULL (default), run from the first NULL output (i.e. where the workflow broke). Otherwise takes an integer and runs from that module. |
A list with the results of each module and a copy of the call used to execute the workflow.
# NOT RUN { w <- workflow(UKAnophelesPlumbeus, UKAir, Background(n = 70), LogisticRegression, PrintMap) RerunWorkflow(w) # }