View source: R/performTemporalCharacterization.r
performTemporalCharacterization | R Documentation |
performTemporalCharacterization
Perform temporal characterization on a concept or family of concepts belonging to a supported Achilles analysis.
performTemporalCharacterization(
connectionDetails,
cdmDatabaseSchema,
resultsDatabaseSchema,
analysisIds = NULL,
conceptId = NULL,
outputFile = "temporal-characterization.csv"
)
connectionDetails |
An R object of type |
cdmDatabaseSchema |
Fully qualified name of database schema that contains OMOP CDM schema. On SQL Server, this should specifiy both the database and the schema, so for example, on SQL Server, 'cdm_instance.dbo'. |
resultsDatabaseSchema |
Fully qualified name of database schema that we can write final results to. Default is cdmDatabaseSchema. On SQL Server, this should specifiy both the database and the schema, so for example, on SQL Server, 'cdm_results.dbo'. |
analysisIds |
(OPTIONAL) A vector containing the set of Achilles analysisIds for
which results will be returned. The following are supported: |
conceptId |
(OPTIONAL) A SNOMED concept_id from the |
outputFile |
CSV file where temporal characterization will be written. Default is temporal-characterization.csv. |
performTemporalAnalyses
Assumes achilles
has been run.
Currently supported Achilles analyses for temporal analyses are: 202 - Visit Occurrence 402 - Condition occurrence 602 - Procedure Occurrence 702 - Drug Exposure 802 - Observation 1802 - Measurement 2102 - Device
A csv file with temporal analyses for each time series
## Not run:
# Example 1:
pneumonia <- 255848
performTemporalCharacterization(
connectionDetails = connectionDetails,
cdmDatabaseSchema = "cdm",
resultsDatabaseSchema = "results",
conceptId = pneumonia,
outputFolder = "output/pneumoniaTemporalChar.csv")
# Example 2:
performTemporalCharacterization(
connectionDetails = connectionDetails,
cdmDatabaseSchema = "cdm",
resultsDatabaseSchema = "results",
analysisIds = c(402,702),
outputFolder = "output/conditionAndDrugTemporalChar.csv")
# Example 3:
performTemporalCharacterization(
connectionDetails = connectionDetails,
cdmDatabaseSchema = "cdm",
resultsDatabaseSchema = "results",
outputFolder = "output/CompleteTemporalChar.csv")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.