knitr::opts_chunk$set(cache = TRUE, echo = TRUE, eval = FALSE)

Beyond spades

So far, we have run models with the spades function.

spades() only has a few arguments:

- debug
- .plotInitialTime
- .saveInitialTime
- progress
- cache

What if we want to do more stuff?

Replication

What if we have a stochastic model and need many independent (Monte Carlo) runs?

The experiment function does this.

?experiment # for details and examples

Generally, however, this creates problems because of the computational time required ...

Replication

The replicates argument

It is as easy as replicates = 2 to do two replicates:

?experiment # for details

# See Example 5
#  ... run mySim from top of help file
sims <- experiment(mySim, replicates = 2)
attr(sims, "experiment")$expDesign # shows 2 reps of same expt

What does it return?

What is the attr?

The curse of replication

Replication is necessary but it multiplies the time it takes to run any model.

Fortunately, replication can use parallel processing:

Parallel

## option 1:
raster::beginCluster() # make a cluster silently in background

## option 2:
cl <- parallel::makeCluster() # need to explicitly pass the
                              # cluster object into functions
                              # using cl argument

Try it!

experiment: Varying parameter values

?experiment
## see example 1
experimentParams <- list(fireSpread = 
                           list(spreadprob = list(0.2, 0.23),
                                nFires = list(20, 10)),
                         caribouMovement = 
                           list(N = list(100, 1000)))
sims <- experiment(mySim, params = experimentParams)
attr(sims, "experiment")

experiment: Saving files

Often, a spades call will generate output files. Where do they go when using experiment?

?experiment
## see example 4
sims <- experiment(mySim, 
                   params = experimentParams, 
                   dirPrefix = c("expt", "simNum"))
attr(sims, "experiment")$expVals # shows 8 alternative
               #experiment levels, 24 unique parameter values

dir(outputPath(mySim))

Working through other examples of experiment

Exercise:

Pick a few examples and try to understand them. (NOTE: they get more complicated as you get towards the bottom.)

?experiment

Running parallel simulations

Clearly, using experiment can take a lot of resources, but there are a few options:

Pattern Oriented Modeling

Estimating unknown parameters

Directly from data

nTrees <- 50
diamCM <- rlnorm(nTrees, meanlog = 2, sdlog = 0.7)
height <- rnorm(nTrees, sqrt(diamCM)*2 + rnorm(nTrees))
glmObj <- glm(height ~ diamCM)
plot(diamCM, height)
summary(glmObj)

Predict method

# predict with new data
predVals <- predict(glmObj, newdata = data.frame(
  diamCM = rlnorm(nTrees, meanlog = 2, sdlog = 0.7)
))

Using this in simulation models

Indirectly from data

Pattern Oriented Modeling (POM)

Heuristic Optimization

POM

There are several examples in ?POM, which we will go through:

## example 1
# What is example 1 doing?
# Run it
# What does the result mean?

More complicated POM

More complicated POM - example 2

## example 2
# What is example 2 doing?
# Run it
# What does the result mean?

More complicated POM - example 3

## example 3 
# What is example 3 doing?
# Run it
# What does the result mean?

Often we want to run a simulation with a variety of parameter values as inputs. This is sometimes called a simulation experiment. The experiment function gives us an easy interface to this.

We will use the establishment module that we created in exercise 4a.

Download a module

library(SpaDES)
module.path <- file.path(dirname(tempdir()), "modules")
downloadModule("establishment", path = module.path)
setPaths(modulePath = module.path)
library(ggplot2)

modules <- list("establishment")

mySim <- simInit(modules = modules)

# make sure the plotting device is clear
clearPlot()
spades(mySim)

Create an experiment

  1. Find out which parameters are in this module. (Hint: where is the module? Can you open it easily from R?)
  2. Pick one of the parameters and create a range of values for it.
  3. Following the structure indicated in example 4 of ?experiment, use experiment to run a spades call for each parameter set (note that experiment is just a wrapper around spades).
  4. Inspect the experiment structure using attributes(mySim).
  5. Create a plot showing on the x axis your parameter values, and on the y-axis something like sum(mySim$establish[]), i.e., the number of pixels that had an establishment event.

Advanced - Create a two-parameter experiment

  1. Repeat as above, but vary two parameters.

See a solution here



PredictiveEcology/SpaDES.Workshops documentation built on Jan. 30, 2021, 6:52 p.m.