In this vignette we present a simple example of the poems workflow using a fictitious population model. The purpose of this example is to demonstrate how the components of the package are used to build an ensemble of viable models that best match known or desired patterns. Although the package is designed to facilitate building complex models and running multitudes of sample simulations, the scale and complexity of this demonstration model is deliberately minimal so as to easily examine the outputs at every stage of the workflow.
The poems workflow, which implements a pattern-oriented modeling (POM) approach (Grimm et al., 2005), is achieved via a framework of interoperable components:
The workflow is summarized by the following six steps:
Create a model template using the PopulationModel class. If the model is spatially explicit, then define the study region via the Region class. All fixed model inputs, such as environmental correlations, as well as any user-defined functions for processes such as harvesting, should be set at this stage.
We could create these components in any order and set model parameters separately, but let’s setup our study region, generate environmental correlations, and define a harvest function prior to initializing the template model with all the fixed parameters.
First, we’ll define our study region (denoted U Island) with some longitude-latitude coordinates.
# Demonstration example region (U Island)
coordinates <- data.frame(
x = rep(seq(177.01, 177.05, 0.01), 5),
y = rep(seq(-18.01, -18.05, -0.01), each = 5)
)
template_raster <- Region$new(coordinates = coordinates)$region_raster # full extent
template_raster[][-c(7, 9, 12, 14, 17:19)] <- NA # make U Island
region <- Region$new(template_raster = template_raster)
raster::plot(region$region_raster,
main = "Example region (cell indices)",
xlab = "Longitude (degrees)", ylab = "Latitude (degrees)",
colNA = "blue"
)Next, we’ll define a distance-based spatial correlation for applying environmental stochasticity within our model. The generated correlation data is compacted for computational efficiency (with large-scale models).
# Distance-based environmental correlation (via a compacted Cholesky decomposition)
env_corr <- SpatialCorrelation$new(region = region, amplitude = 0.4, breadth = 500)
correlation <- env_corr$get_compact_decomposition(decimals = 2)
correlation # examine
#> $matrix
#> [,1] [,2] [,3] [,4] [,5] [,6] [,7]
#> [1,] 1 0.01 0.04 0.04 0.04 0.02 0.04
#> [2,] 0 1.00 1.00 0.01 1.00 0.02 0.01
#> [3,] 0 0.00 0.00 1.00 0.00 0.05 0.05
#> [4,] 0 0.00 0.00 0.00 0.00 1.00 1.00
#>
#> $map
#> [,1] [,2] [,3] [,4] [,5] [,6] [,7]
#> [1,] 1 1 1 2 3 3 4
#> [2,] NA 2 3 3 5 4 5
#> [3,] NA NA NA 4 NA 5 6
#> [4,] NA NA NA NA NA 6 7Let’s now define a simple harvest function, which is optionally list-nested with a harvest rate parameter. We’ll also define an alias to the harvest rate so we can sample this parameter later.
Finally, we can build our template model with these and other fixed parameters.
# Population (simulation) model template for fixed parameters
stage_matrix <- matrix(
c(
0, 2.5, # Leslie/Lefkovitch matrix
0.8, 0.5
),
nrow = 2, ncol = 2, byrow = TRUE,
dimnames = list(c("juv", "adult"), c("juv", "adult"))
)
stage_matrix # examine
#> juv adult
#> juv 0.0 2.5
#> adult 0.8 0.5
model_template <- PopulationModel$new(
region = region,
time_steps = 10, # years
populations = region$region_cells, # 7
stages = 2,
stage_matrix = stage_matrix,
demographic_stochasticity = TRUE,
standard_deviation = 0.05,
correlation = correlation,
density_dependence = "logistic",
harvest = harvest,
results_selection = c("abundance", "harvested"),
attribute_aliases = harvest_rate_alias
)Some model parameters are single values, whilst others are represented as arrays and other multi-value data structures. Usually, we don’t wish to sample each individual value within these multi-value parameters (in step 3), but to generate them dynamically via one or more intermediate sampled parameters. Here we build generators for model initial abundance, carrying capacity, and dispersal.
Firstly, our initial abundance and carrying capacity generator utilizes an example (mock) habitat suitability for our defined study region.
# Example habitat suitability
example_hs <- c(0.8, 1, 0.7, 0.9, 0.6, 0.7, 0.8)
example_hs_raster <- region$region_raster
example_hs_raster[region$region_indices] <- example_hs
raster::plot(example_hs_raster,
main = "Example habitat suitability",
xlab = "Longitude (degrees)", ylab = "Latitude (degrees)",
colNA = "blue"
)The generator utilizes generic template functionality for user-defined custom functions. It uses sampled input parameters (initial total abundance and maximum cell density), along with habitat suitability, to generate the desired output model parameters (initial abundance and carrying capacity) via these user-defined functions. Generators can also be configured to read values from files or generate values via probabilistic distributions.
# Initial abundance and carrying capacity generated via example habitat suitability
capacity_gen <- Generator$new(
description = "Capacity generator",
example_hs = example_hs, # template attached
inputs = c("initial_n", "density_max"),
outputs = c("initial_abundance", "carrying_capacity")
)
capacity_gen$add_generative_requirements(list(
initial_abundance = "function",
carrying_capacity = "function"
))
capacity_gen$add_function_template("initial_abundance",
function_def = function(params) {
stats::rmultinom(1,
size = params$initial_n,
prob = params$example_hs
)[, 1]
},
call_params = c("initial_n", "example_hs")
)
capacity_gen$add_function_template("carrying_capacity",
function_def = function(params) {
round(params$density_max * params$example_hs)
},
call_params = c("density_max", "example_hs")
)
capacity_gen$generate(input_values = list(initial_n = 500, density_max = 100)) # test
#> $initial_abundance
#> [1] 72 110 58 82 55 64 59
#>
#> $carrying_capacity
#> [1] 80 100 70 90 60 70 80Our dispersal generator uses default functionality for generating dispersal rates between cells. Its sampled inputs parameterize the distance-based dispersal function (proportion dispersing and breadth of dispersal). The generator can be configured with a dispersal friction helper class object, which calculates equivalent dispersal distances for frictional landscapes and coastlines. Here it is used to ensure dispersal is not performed directly across the “water” in our example U-shaped island. The generated dispersal data is calculated via pre-calculated distance data and compacted for computational efficiency (with large-scale models).
# Distance-based dispersal generator
dispersal_gen <- DispersalGenerator$new(
region = region,
dispersal_max_distance = 3000, # in m
dispersal_friction = DispersalFriction$new(),
inputs = c("dispersal_p", "dispersal_b"),
decimals = 5
)
dispersal_gen$calculate_distance_data() # pre-calculate
test_dispersal <- dispersal_gen$generate(input_values = list(
dispersal_p = 0.5,
dispersal_b = 700
))
head(test_dispersal$dispersal_data[[1]])
#> target_pop source_pop emigrant_row immigrant_row dispersal_rate
#> 1 3 1 1 1 0.10196
#> 2 5 1 2 1 0.02079
#> 3 6 1 3 1 0.01476
#> 4 4 2 1 1 0.10196
#> 5 6 2 2 2 0.01476
#> 6 7 2 3 1 0.02079Note that there is no dispersal rate between cells 1 and 2 as there is “water” between those cells, and consequently dispersal between those cells must travel around the U-shaped island, which can’t be achieved in one simulation time-step since the “round” distance between those cells is greater than 3000 m.
In order to explore the model parameter space to find the best models, we generate Latin hypercube samples of model and generator parameters to be simulated, using the LatinHypercubeSampler class. This class has functionality for generating sample parameters via Uniform, Normal, Lognormal, Beta, and Triangular distributions. For our example we only generate 12 samples. We encourage the user to generate hundreds, or thousands, of samples.
# Generate sampled values for variable model parameters via LHS
lhs_gen <- LatinHypercubeSampler$new()
lhs_gen$set_uniform_parameter("growth_rate_max", lower = 0.4, upper = 0.6, decimals = 2)
lhs_gen$set_uniform_parameter("harvest_rate", lower = 0.05, upper = 0.15, decimals = 2)
lhs_gen$set_uniform_parameter("initial_n", lower = 400, upper = 600, decimals = 0)
lhs_gen$set_uniform_parameter("density_max", lower = 80, upper = 120, decimals = 0)
lhs_gen$set_uniform_parameter("dispersal_p", lower = 0.2, upper = 0.5, decimals = 2)
lhs_gen$set_uniform_parameter("dispersal_b", lower = 400, upper = 1000, decimals = 0)
sample_data <- lhs_gen$generate_samples(number = 12, random_seed = 123)
sample_data # examine
#> growth_rate_max harvest_rate initial_n density_max dispersal_p dispersal_b
#> 1 0.50 0.09 575 111 0.26 481
#> 2 0.41 0.07 487 96 0.34 589
#> 3 0.44 0.09 483 110 0.42 509
#> 4 0.59 0.11 589 86 0.38 859
#> 5 0.56 0.06 441 92 0.21 667
#> 6 0.51 0.14 458 116 0.50 980
#> 7 0.54 0.05 416 88 0.28 447
#> 8 0.43 0.13 542 107 0.36 920
#> 9 0.46 0.12 422 101 0.43 849
#> 10 0.52 0.08 552 99 0.32 745
#> 11 0.48 0.11 525 119 0.25 789
#> 12 0.58 0.15 505 81 0.45 609We now wish to run a simulation for each set (or row) of sampled parameters. The SimulationManager class manages the generation of parameters (via the generators), the running the model simulations, and writing simulation results to disk. It also maintains a log of each simulation’s success and any errors or warnings encountered.
# Create a simulation manager and run the sampled model simulations
OUTPUT_DIR <- tempdir()
sim_manager <- SimulationManager$new(
sample_data = sample_data,
model_template = model_template,
generators = list(capacity_gen, dispersal_gen),
parallel_cores = 2,
results_dir = OUTPUT_DIR
)
run_output <- sim_manager$run()
run_output$summary
#> [1] "12 of 12 sample models ran and saved results successfully"
dir(OUTPUT_DIR, "*.RData") # includes 12 result files
#> [1] "sample_10_results.RData" "sample_11_results.RData"
#> [3] "sample_12_results.RData" "sample_1_results.RData"
#> [5] "sample_2_results.RData" "sample_3_results.RData"
#> [7] "sample_4_results.RData" "sample_5_results.RData"
#> [9] "sample_6_results.RData" "sample_7_results.RData"
#> [11] "sample_8_results.RData" "sample_9_results.RData"
dir(OUTPUT_DIR, "*.txt") # plus simulation log
#> [1] "simulation_log.txt"Note that the output directory contains a R-data result files for each sample simulation and a simulation log file.
We now wish to collate summary results for each of our simulations via the ResultsManager class. This manager loads the results from each sample simulation into an intermediate PopulationResults class object, which dynamically generates further results. We need to define functions for calculating summary metrics, as well as any matrices (one row of values per simulation) that we may be interested in examining. Each metric (or matrix) is associated with a user-defined function that utilizes results object attributes, or alternatively direct access to an attribute may be defined via a string. Once generated, the result metrics (a data frame) and/or matrices (a list) can be accessed via the manager. We may utilize the collated results in a variety of ways. However, with the objective of selecting the best models, we wish to compare (or validate) these result metrics to (with) known or desired target patterns (in step 6).
results_manager <- ResultsManager$new(
simulation_manager = sim_manager,
simulation_results = PopulationResults$new(),
summary_metrics = c("trend_n", "total_h"),
summary_matrices = c("n", "h"),
summary_functions = list(
trend_n = function(results) {
round(results$all$abundance_trend, 2)
},
total_h = function(results) {
sum(results$harvested)
},
n = "all$abundance", # string
h = "all$harvested"
),
parallel_cores = 2
)
gen_output <- results_manager$generate()
gen_output$summary
#> [1] "12 of 12 summary metrics/matrices generated from sample results successfully"
dir(OUTPUT_DIR, "*.txt") # plus generation log
#> [1] "generation_log.txt" "simulation_log.txt"
results_manager$summary_metric_data
#> index trend_n total_h
#> 1 1 -3.00 529
#> 2 2 -13.50 339
#> 3 3 2.57 489
#> 4 4 -7.50 502
#> 5 5 1.50 280
#> 6 6 -6.75 732
#> 7 7 -1.00 234
#> 8 8 -18.33 647
#> 9 9 0.86 543
#> 10 10 -2.67 404
#> 11 11 0.57 641
#> 12 12 -1.80 578
results_manager$summary_matrix_list
#> $n
#> [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10]
#> [1,] 543 529 565 534 526 533 523 535 525 490
#> [2,] 483 485 508 461 490 434 400 403 376 389
#> [3,] 499 488 476 494 488 471 477 517 497 524
#> [4,] 472 403 426 403 393 388 366 368 402 385
#> [5,] 410 452 452 454 416 447 444 476 460 453
#> [6,] 470 487 459 477 456 464 432 425 427 420
#> [7,] 421 466 424 430 425 441 443 448 418 406
#> [8,] 539 517 446 454 415 411 374 396 356 394
#> [9,] 385 369 406 403 420 393 417 391 382 397
#> [10,] 491 478 459 436 457 470 456 462 475 436
#> [11,] 524 518 506 500 521 506 549 528 541 445
#> [12,] 377 332 335 315 322 314 328 326 309 354
#>
#> $h
#> [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10]
#> [1,] 54 54 56 52 52 53 52 53 53 50
#> [2,] 34 38 38 34 41 33 30 32 30 29
#> [3,] 49 48 49 48 49 47 49 50 48 52
#> [4,] 59 50 56 49 50 48 45 46 50 49
#> [5,] 27 27 28 27 28 27 26 32 28 30
#> [6,] 76 79 75 77 74 77 68 69 70 67
#> [7,] 22 26 22 23 24 23 24 24 24 22
#> [8,] 81 79 67 70 62 60 55 60 54 59
#> [9,] 54 51 55 54 58 55 56 55 52 53
#> [10,] 43 41 40 39 40 40 41 42 42 36
#> [11,] 65 67 64 61 64 62 69 66 67 56
#> [12,] 66 59 56 55 57 56 57 58 53 61We now select and analyze our ‘best’ models via a Validator class object, which by default utilizes an approximate Bayesian computation (ABC) approach (Beaumont, Zhang, & Balding, 2002) provided by the abc library (Csillery et al., 2015). The validator can be configured appropriately for a problem domain (see the abc documentation). Here we use the default configuration to select the best 3 models, along with a weight value, which is indicative of the congruence between each model’s summary metrics and the corresponding target patterns. Also provided (with the default settings) is a diagnostic output (PDF) file, containing statistical information for analyzing the contribution of model parameters in the selection/validation process (see the abc documentation). For our simple demonstration the metrics and corresponding targets are relatively trivial, having the aim of producing stable population abundances with high harvest. However, the package facilitates the use more complex spatio-temporal metrics and targets (demonstrated in more advanced vignettes).
# Create a validator for selecting the 'best' example models
validator <- Validator$new(
simulation_parameters = sample_data,
simulation_summary_metrics =
results_manager$summary_metric_data[-1],
observed_metric_targets = c(trend_n = 0, total_h = 600),
output_dir = OUTPUT_DIR
)
suppressWarnings(validator$run(tolerance = 0.25, output_diagnostics = TRUE))
#> 12345678910
#> 12345678910
dir(OUTPUT_DIR, "*.pdf") # plus validation diagnostics (see abc library documentation)
#> [1] "validation_diagnostics.pdf"
validator$selected_simulations # top 3 models (stable abundance and high harvest)
#> index weight
#> 1 9 0.05602485
#> 2 11 0.52745674
#> 3 12 0.00000000We encourage the user to examine the generated diagnostics (PDF) output file, and to become acquainted with the analysis that this information facilitates (see the abc documentation). As our simple example only uses two metrics/targets, we can visualize the congruence of the selected models with the targets via a simple plot.
# Plot the simulation, targets, and selected metrics
graphics::plot(
x = results_manager$summary_metric_data$total_h,
y = results_manager$summary_metric_data$trend_n,
main = "Example model validation",
xlab = "Total harvested", ylab = "Abundance trend"
)
graphics::points(x = 600, y = 0, col = "red", pch = 4)
selected_indices <- validator$selected_simulations$index
graphics::points(
x = results_manager$summary_metric_data$total_h[selected_indices],
y = results_manager$summary_metric_data$trend_n[selected_indices],
col = "blue", pch = 3
)
graphics::legend("bottomleft",
legend = c("Summary metrics", "Targets", "Selected"),
col = c(1, "red", "blue"), pch = c(1, 4, 3), cex = 0.8
)This demonstration has provided an overview of the poems workflow and modules via a simple population model example. We hope it has given you the foundation to progress to our more advanced Tasmanian Thylacine vignette, and towards utilizing the package for your own modeling projects.
Thank you :-)
Beaumont, M. A., Zhang, W., & Balding, D. J. (2002). ‘Approximate Bayesian computation in population genetics’. Genetics, vol. 162, no. 4, pp, 2025–2035.
Csillery, K., Lemaire L., Francois O., & Blum M. (2015). ‘abc: Tools for Approximate Bayesian Computation (ABC)’. R package version 2.1. Retrieved from https://CRAN.R-project.org/package=abc
Grimm, V., Revilla, E., Berger, U., Jeltsch, F., Mooij, W. M., Railsback, S. F., Thulke, H. H., Weiner, J., Wiegand, T., DeAngelis, D. L., (2005). ‘Pattern-Oriented Modeling of Agent-Based Complex Systems: Lessons from Ecology’. Science vol. 310, no. 5750, pp. 987–991.