Learn R Programming

EcoSimR (version 0.1.0)

reproduce_model: Reproduce a result

Description

Helps reproduce the result of a simulation by restoring the RNG to the state of a supplied null model object.

Usage

reproduce_model(model)

Arguments

model
the model object containing the result to be reproduced.

Details

Works by resetting the RNG state to what it was for a given EcoSimR simulation. This only works if the user saved the seed with the saveSeed parameter.

Examples

Run this code
## Not run: 
# finchMod <- cooc_null_model(dataWiFinches, algo="sim1",saveSeed=T)
# ## Check model output
# mean(finchMod$Sim)
# 
# reproduce_model(finchMod)
# 
# finchMod <- cooc_null_model(dataWiFinches, algo="sim1")
# ## Check model output is the same as before
# mean(finchMod$Sim)
# reproduce_model(finchMod)
# ## End(Not run)

Run the code above in your browser using DataLab