View source: R/summary.sim_results.R
print.summary.sim_results | R Documentation |
summary.sim_results
ObjectPrint summary.sim_results
Object
## S3 method for class 'summary.sim_results'
print(x, ...)
x |
|
... |
further arguments passed to or from other methods; currently none specified |
None
# data preparation
library(terra)
n1_small <- rast(system.file("input_maps/n1_small.tif", package = "rangr"))
K_small <- rast(system.file("input_maps/K_small.tif", package = "rangr"))
sim_data <- initialise(
n1_map = n1_small,
K_map = K_small,
r = log(2),
rate = 1 / 1e3
)
sim_results <- sim(sim_data, time = 10)
summary_sim_results <- summary(sim_results)
print(summary_sim_results)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.