View source: R/CohortConstruction.R
generateCohortSet | R Documentation |
This function generates a set of cohorts in the cohort table.
generateCohortSet(
connectionDetails = NULL,
connection = NULL,
cdmDatabaseSchema,
tempEmulationSchema = getOption("sqlRenderTempEmulationSchema"),
cohortDatabaseSchema = cdmDatabaseSchema,
cohortTableNames = getCohortTableNames(),
cohortDefinitionSet = NULL,
stopOnError = TRUE,
incremental = FALSE,
incrementalFolder = NULL
)
connectionDetails |
An object of type |
connection |
An object of type |
cdmDatabaseSchema |
Schema name where your patient-level data in OMOP CDM format resides. Note that for SQL Server, this should include both the database and schema name, for example 'cdm_data.dbo'. |
tempEmulationSchema |
Some database platforms like Oracle and Impala do not truly support temp tables. To emulate temp tables, provide a schema with write privileges where temp tables can be created. |
cohortDatabaseSchema |
Schema name where your cohort tables reside. Note that for SQL Server, this should include both the database and schema name, for example 'scratch.dbo'. |
cohortTableNames |
The names of the cohort tables. See |
cohortDefinitionSet |
The
Optionally, this data frame may contain:
|
stopOnError |
If an error happens while generating one of the cohorts in the cohortDefinitionSet, should we stop processing the other cohorts? The default is TRUE; when set to FALSE, failures will be identified in the return value from this function. |
incremental |
Create only cohorts that haven't been created before? |
incrementalFolder |
If |
A data.frame consisting of the following columns:
The unique integer identifier of the cohort
The cohort's name
The status of the generation task which may be one of the following:
The generation completed successfully
The generation failed (see logs for details)
If using incremental == 'TRUE', this status indicates that the cohort's generation was skipped since it was previously completed.
The start time of the cohort generation. If the generationStatus == 'SKIPPED', the startTime will be NA.
The end time of the cohort generation. If the generationStatus == 'FAILED', the endTime will be the time of the failure. If the generationStatus == 'SKIPPED', endTime will be NA.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.