Skip to contents

This DiseasystoreSeirExample R6 brings support the SEIR example data bundled with diseasy.

Value

A new instance of the DiseasystoreSeirExample R6 class.

Super class

diseasystore::DiseasystoreBase -> DiseasystoreSeirExample

Methods

Inherited methods


Method new()

Creates a new instance of the DiseasystoreSeirExample R6 class. This module is typically not constructed directly but rather through DiseasyModel* classes.

Usage

Arguments

...

Parameters sent to ?diseasystore::DiseasystoreBase R6 constructor.

Returns

A new instance of the DiseasystoreSeirExample R6 class.


Method clone()

The objects of this class are cloneable with this method.

Usage

DiseasystoreSeirExample$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

  ds <- DiseasystoreSeirExample$new(
    source_conn = ".",
    target_conn = DBI::dbConnect(RSQLite::SQLite())
  )

  rm(ds)