Skip to content

ChungsooKim/CoDImputationOnlyDeathPop

Repository files navigation

CODImputationOnlyDeathPop package

Study Status: Design Finalized

  • Analytics use case(s): Patient-Level Prediction
  • Study type: Clinical Application
  • Tags: -
  • Study lead: Chungsoo Kim, Seng Chan You, Rae Woong Park*
  • Study lead forums tag: [Chungsoo_Kim], [SCYou], [RWPark]
  • Study start date: June 1, 2019
  • Study end date: -
  • Protocol: -
  • Publications: -
  • Results explorer: -

Imputation cause of death for database having no cause of death data.

Instructions To Build Package

  • Build the package by clicking the R studio 'Install and Restart' button in the built tab

Instructions To Run Package

library(CODImputationOnlyDeathPop)

# USER INPUTS
#=======================
# The folder where the study intermediate and result files will be written:
outputFolder <- "./ImputationResult"

# Specify where the temporary files (used by the ff package) will be created:
options(fftempdir = "location with space to save big data")

# Details for connecting to the server:
dbms <- "you dbms"
user <- 'your username'
pw <- 'your password'
server <- 'your server'
port <- 'your port'

connectionDetails <- DatabaseConnector::createConnectionDetails(dbms = dbms,
                                                                server = server,
                                                                user = user,
                                                                password = pw,
                                                                port = port)

# Add the database containing the OMOP CDM data
cdmDatabaseSchema <- 'cdm database schema'
databaseName <- 'cdm database name'

# Add a database with read/write access as this is where the cohorts will be generated
cohortDatabaseSchema <- 'work database schema'

oracleTempSchema <- NULL

# table name where the cohorts will be generated
cohortTable <- 'ValidationCohort'

#=======================

execute(connectionDetails,
        databaseName,
        cdmDatabaseSchema,
        cohortDatabaseSchema,
        oracleTempSchema,
        cohortTable,
        outputFolder,
        createCohorts = T,
        runValidation = T,
        createImputationData = T,
        causeImputation = T,
        packageResults = F,
        minCellCount = 1,
        sampleSize = NULL)

Development status

Under development. Do not use

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages