Learn R Programming

diseasystore (version 0.3.1)

DiseasystoreEcdcRespiratoryViruses: feature store handler of EU-ECDC Respiratory viruses features

Description

This DiseasystoreEcdcRespiratoryViruses R6 brings support for using the EU-ECDC Respiratory viruses weekly data repository. See the vignette("diseasystore-ecdc-respiratory-viruses") for details on how to configure the feature store.

Arguments

Value

A new instance of the DiseasystoreEcdcRespiratoryViruses

R6 class.

Super class

diseasystore::DiseasystoreBase -> DiseasystoreEcdcRespiratoryViruses

Methods

Inherited methods


Method new()

Creates a new instance of the DiseasystoreEcdcRespiratoryViruses R6 class.

Usage

DiseasystoreEcdcRespiratoryViruses$new(...)

Arguments

...

Arguments passed to the ?DiseasystoreBase constructor.

Returns

A new instance of the DiseasystoreEcdcRespiratoryViruses R6 class.


Method clone()

The objects of this class are cloneable with this method.

Usage

DiseasystoreEcdcRespiratoryViruses$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

Run this code
if (FALSE) { # requireNamespace("RSQLite", quietly = TRUE)
  ds <- DiseasystoreEcdcRespiratoryViruses$new(
    source_conn = ".",
    target_conn = DBI::dbConnect(RSQLite::SQLite())
  )


  rm(ds)
}

Run the code above in your browser using DataLab