viewCharacterization {Characterization} | R Documentation |
viewCharacterization - Interactively view the characterization results
Description
This is a shiny app for viewing interactive plots and tables
Usage
viewCharacterization(resultFolder, cohortDefinitionSet = NULL)
Arguments
resultFolder |
The location of the csv results |
cohortDefinitionSet |
The cohortDefinitionSet extracted using webAPI |
Details
Input is the output of ...
Value
Opens a shiny app for interactively viewing the results
Examples
conDet <- exampleOmopConnectionDetails()
drSet <- createDechallengeRechallengeSettings(
targetIds = c(1,2),
outcomeIds = 3
)
cSet <- createCharacterizationSettings(
dechallengeRechallengeSettings = drSet
)
runCharacterizationAnalyses(
connectionDetails = conDet,
targetDatabaseSchema = 'main',
targetTable = 'cohort',
outcomeDatabaseSchema = 'main',
outcomeTable = 'cohort',
cdmDatabaseSchema = 'main',
characterizationSettings = cSet,
outputDirectory = file.path(tempdir(),'view')
)
viewCharacterization(
resultFolder = file.path(tempdir(),'view')
)
[Package Characterization version 2.1.3 Index]