gdata<- | R Documentation |
SimInf_model
objectThe global data is a numeric vector that is common to all nodes. The global data vector is passed as an argument to the transition rate functions and the post time step function.
gdata(model, parameter) <- value
## S4 replacement method for signature 'SimInf_model'
gdata(model, parameter) <- value
model |
The |
parameter |
The name of the parameter to set. |
value |
A numeric value. |
a SimInf_model
object
## Create an SIR model
model <- SIR(u0 = data.frame(S = 99, I = 1, R = 0),
tspan = 1:5, beta = 0.16, gamma = 0.077)
## Set 'beta' to a new value
gdata(model, "beta") <- 2
## Extract the global data vector that is common to all nodes
gdata(model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.