R/DechallengeRechallenge.R
computeRechallengeFailCaseSeriesAnalyses.Rd
Compute fine the subjects that fail the dechallenge rechallenge study
computeRechallengeFailCaseSeriesAnalyses(
connectionDetails = NULL,
targetDatabaseSchema,
targetTable,
outcomeDatabaseSchema = targetDatabaseSchema,
outcomeTable = targetTable,
tempEmulationSchema = getOption("sqlRenderTempEmulationSchema"),
settings,
databaseId = "database 1",
showSubjectId = F,
outputFolder = file.path(getwd(), "results"),
minCellCount = 0,
...
)
An object of type `connectionDetails` as created using the [DatabaseConnector::createConnectionDetails()] function.
Schema name where your target cohort table resides. Note that for SQL Server, this should include both the database and schema name, for example 'scratch.dbo'.
Name of the target cohort table.
Schema name where your outcome cohort table resides. Note that for SQL Server, this should include both the database and schema name, for example 'scratch.dbo'.
Name of the outcome cohort table.
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
The settings for the timeToEvent study
An identifier for the database (string)
if F then subject_ids are hidden (recommended if sharing results)
A directory to save the results as csv files
The minimum cell value to display, values less than this will be replaced by -1
extra inputs
An Andromeda::andromeda()
object with the case series details of the failed rechallenge
Other DechallengeRechallenge:
computeDechallengeRechallengeAnalyses()
,
createDechallengeRechallengeSettings()