OccurrenceR Documentation

Accessor functions for getting module outputs from a workflow object

Description

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 separate workflow being one element of the list.

Usage

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)

## End(Not run)