Occurrence: Accessor functions for getting module outputs from a workflow...

Description Usage Arguments Examples

View source: R/accessors.R

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

1
2
3
4
5
6
7
8
9

Arguments

workflow

A workflow object

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
## 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)

zoon documentation built on Feb. 28, 2020, 5:09 p.m.