# Table of Contents

# Pre

Pre-made models for disease outbreaks.

Import it with:

       const pre = require('@epispot/epijs').pre

# sir

The SIR Model. Returns the model as a model class from the model module.

# Parameters

# Examples

let sirmodel = sir(4, 9999, 1, 1/21, 10000, true)

Returns any A model class from the model module. .

# seir

The SEIR Model. Returns the model as a model class from the model module.

# Parameters

# Examples

seir(4, 9999, 1, 1/7, 1/7, 10000, true)

Returns any A model class from the model module. .

# seird

The SEIRD Model. Returns the model as a model class from the model module.

# Parameters

# Examples

seird(4, 99999, 1, 1/21, 1/14, 1/100, 10000, true)

Returns any A model class from the model module. .

# seihrd

The SEIHRD Model. Returns the model as a model class from the model module.

# Parameters

# Examples

seihrd(4, 9999, 1, 1/21, 1/40, 1/14, 1/100, 1/20, 1/30, 10000, true)

Returns any A model class from the model module. .