These functions access the output from each module type. If workflows are split using list, they will return a list with the output of each seperate workflow being one element of the list.

Occurrence(workflow)

Covariate(workflow)

Process(workflow)

Model(workflow)

Output(workflow)

Arguments

workflow
A workflow object

Examples

## Not run: ------------------------------------ # work1 <- workflow(occurrence = UKAnophelesPlumbeus, # covariate = UKAir, # process = Background(n = 70), # model = list(LogisticRegression, LogisticRegression), # output = PrintMap) # # Occurrence(work1) # Covariate(work1) # Process(work1) # Model(work1) # Model(work1)[[1]] # Output(work1) ## ---------------------------------------------