Remove all objects from workspace.

remove (list = objects() ) 

Load add-on packages - deSolve - contains lsoda function - differential equation solver.

library (deSolve)
## 
## Attaching package: 'deSolve'
## 
## The following object is masked from 'package:graphics':
## 
##     matplot

Function to compute derivatives of the differential equations.

seir_model = function (current_timepoint, state_values, parameters)
{  
  # create state variables (local variables)
  S = state_values [1]        # susceptibles
  E = state_values [2]        # exposure
  I = state_values [3]        # infectious
  R = state_values [4]        # recovered
  
  with (
    as.list (parameters), # variable names within parameters can be used 
         { # compute derivatives
           dS = (-beta * S * I)
           dE = ( beta * S * I) - (delta * E)
           dI = ( beta * S * I) - (gamma * I)
           dR = ( gamma * I)
           
           # combine results
           results = c (dS, dE, dI, dR)
           list (results)
         } 
        )
}

Parameters

contact_rate = 10                 # number of contacts per day
transmission_probability = 0.07   # transmission probability
infectious_period = 5             # infectious period
latent_period = 2                 # latent period

Compute values of beta (tranmission rate), gamma (recovery rate) and delta (exposion rate).

beta_value = contact_rate * transmission_probability
gamma_value = 1 / infectious_period
delta_value = 1 / latent_period

Compute Ro - Reproductive number.

Ro = beta_value / gamma_value

Disease dynamics parameters.

parameter_list = c (beta = beta_value, gamma = gamma_value, delta = delta_value)

Initial values for sub-populations.

X = 9992        # susceptible hosts
Y = 1           # infectious hosts
Z = 2           # recovered hosts
W = 5           # exposure host

Compute total population.

N = X + Y + Z + W

Initial state values for the differential equations.

initial_values = c (S = X/N, E = W/N, I = Y/N, R = Z/N)

Output timepoints.

timepoints = seq (0, 50, by=1)

Simulate the SEIR epidemic.

output = lsoda (initial_values, timepoints, seir_model, parameter_list)

Plot dynamics of Susceptibles sub-population.

plot (S ~ time, data = output, pch = 0, type='b', col = 'blue') 

Plot dynamics of Exposure sub-population.

plot (E ~ time, data = output, pch = 2, type='b', col = 'purple') 

Plot dynamics of Infectious sub-population.

plot (I ~ time, data = output, pch = 18, type='b', col = 'red')

Plot dynamics of Recovered sub-population.

plot (R ~ time, data = output, pch = 17, type='b', col = 'green') 

Plot dynamics of Susceptibles, Exposure, Infectious and Recovered sub-populations in the same plot.

# susceptible hosts over time
plot (S ~ time, data = output, type='o', ylim = c(0,1), pch = 0, col = 'blue', ylab = 'S, E, I, R', main = 'SEIR epidemic') 
text(12,0.80, "S", col = 'blue')

# remain on same frame
par (new = TRUE)    

# exposure host over time
plot (E ~ time, data = output, type='o', ylim = c(0,1), pch = 2, col = 'purple', ylab = '', axes = FALSE) 
text(20,0.10, "E", col = 'Purple')

# remain on same frame
par (new = TRUE)   

# infectious hosts over time
plot (I ~ time, data = output, type='o', ylim = c(0,1), pch = 18, col = 'red', ylab = '', axes = FALSE) 
text(28,0.25, "I", col = 'red')

# remain on same frame
par (new = TRUE)  

# recovered hosts over time
plot (R ~ time, data = output, type='o', ylim = c(0,1), pch = 17, col = 'green', ylab = '', axes = FALSE)   
text(30,0.70, "R", col = 'green')

Description: The four (4) compartments disease model which is SEIR model compose with susceptible (S), exposure (E), infected(I) and recovery (R). The disease dynamic is moving from susceptible to exposure then infected and recovery. Some examples of this model are influenza and rabies.