mockOmopSketch: Creates a mock database to test OmopSketch package.
Description
Creates a mock database to test OmopSketch package.
Usage
mockOmopSketch(
con = NULL,
writeSchema = NULL,
numberIndividuals = 100,
seed = NULL
)
Value
A mock cdm_reference object.
Arguments
- con
A DBI connection to create the cdm mock object. By default, the
connection would be a 'duckdb' one.
- writeSchema
Name of an schema of the DBI connection with writing
permissions.
- numberIndividuals
Number of individuals to create in the cdm
reference object.
- seed
An optional integer used to set the seed for random number
generation, ensuring reproducibility of the generated data. If provided, this
seed allows the function to produce consistent results each time it is run
with the same inputs. If 'NULL', the seed is not set, which can lead to
different outputs on each run.
Examples
Run this code# \donttest{
mockOmopSketch(numberIndividuals = 100)
# }
Run the code above in your browser using DataLab