-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimizations and New Analytics (#55)
New functionality for making aggregate covariates more efficient. Adding incremental mode Removing SQLite Updated Documentation Adding Logging. Validated SQL on all supported DBMS
- Loading branch information
Showing
127 changed files
with
8,746 additions
and
3,981 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
Package: Characterization | ||
Type: Package | ||
Title: Characterizations of Cohorts | ||
Version: 0.2.0 | ||
Date: 2024-04-03 | ||
Version: 1.1.1 | ||
Date: 2024-08-07 | ||
Authors@R: c( | ||
person("Jenna", "Reps", , "[email protected]", role = c("aut", "cre")), | ||
person("Patrick", "Ryan", , "[email protected]", role = c("aut")) | ||
person("Patrick", "Ryan", , "[email protected]", role = c("aut")), | ||
person("Chris", "Knoll", , "[email protected]", role = c("aut")) | ||
) | ||
Maintainer: Jenna Reps <[email protected]> | ||
Description: Various characterizations of target and outcome cohorts. | ||
|
@@ -17,9 +18,10 @@ Depends: | |
Imports: | ||
Andromeda, | ||
DatabaseConnector (>= 6.3.1), | ||
FeatureExtraction (>= 3.5.0), | ||
FeatureExtraction (>= 3.6.0), | ||
SqlRender (>= 1.9.0), | ||
ParallelLogger (>= 3.0.0), | ||
ResultModelManager, | ||
checkmate, | ||
dplyr, | ||
readr, | ||
|
@@ -31,16 +33,15 @@ Suggests: | |
kableExtra, | ||
knitr, | ||
markdown, | ||
ResultModelManager, | ||
rmarkdown, | ||
ShinyAppBuilder, | ||
shiny, | ||
withr | ||
Remotes: | ||
ohdsi/FeatureExtraction, | ||
ohdsi/Eunomia, | ||
ohdsi/ResultModelManager, | ||
ohdsi/ShinyAppBuilder, | ||
ohdsi/DatabaseConnector | ||
ohdsi/ShinyAppBuilder | ||
NeedsCompilation: no | ||
RoxygenNote: 7.3.1 | ||
Encoding: UTF-8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,25 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(computeAggregateCovariateAnalyses) | ||
export(cleanIncremental) | ||
export(cleanNonIncremental) | ||
export(computeDechallengeRechallengeAnalyses) | ||
export(computeRechallengeFailCaseSeriesAnalyses) | ||
export(computeTimeToEventAnalyses) | ||
export(createAggregateCovariateSettings) | ||
export(createCharacterizationSettings) | ||
export(createCharacterizationTables) | ||
export(createDechallengeRechallengeSettings) | ||
export(createDuringCovariateSettings) | ||
export(createSqliteDatabase) | ||
export(createTimeToEventSettings) | ||
export(exportAggregateCovariateToCsv) | ||
export(exportDatabaseToCsv) | ||
export(exportDechallengeRechallengeToCsv) | ||
export(exportRechallengeFailCaseSeriesToCsv) | ||
export(exportTimeToEventToCsv) | ||
export(loadAggregateCovariateAnalyses) | ||
export(getDbDuringCovariateData) | ||
export(insertResultsToDatabase) | ||
export(loadCharacterizationSettings) | ||
export(loadDechallengeRechallengeAnalyses) | ||
export(loadRechallengeFailCaseSeriesAnalyses) | ||
export(loadTimeToEventAnalyses) | ||
export(runCharacterizationAnalyses) | ||
export(saveAggregateCovariateAnalyses) | ||
export(saveCharacterizationSettings) | ||
export(saveDechallengeRechallengeAnalyses) | ||
export(saveRechallengeFailCaseSeriesAnalyses) | ||
export(saveTimeToEventAnalyses) | ||
export(viewCharacterization) | ||
importFrom(dplyr,"%>%") | ||
importFrom(rlang,.data) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.