Description Usage Arguments Details Examples
Execute hivTestStudyCharacterization Study
1 2 3 |
connectionDetails |
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'. |
oracleTempSchema |
Should be used in Oracle to specify a schema where the user has write priviliges for storing temporary tables. |
tablePrefix |
The prefix for the study tables, should be same value used in init() |
outputFolder |
Name of local folder to place results; make sure to use forward slashes (/). Do not use a folder on a network drive since this greatly impacts performance. |
This function executes the hivTestStudy Characterization Study.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
connectionDetails <- createConnectionDetails(dbms = "postgresql",
user = "joe",
password = "secret",
server = "myserver")
execute(connectionDetails,
cdmDatabaseSchema = "cdm_data",
targetDatabaseSchema = "results",
oracleTempSchema = NULL,
tablePrefix = "endo_",
outputFolder = "c:/temp/study_results")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.