-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #754 from ganisimov/duckdb_export_performance
Duckdb export performance
- Loading branch information
Showing
5 changed files
with
870 additions
and
393 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ deploy.sh | |
_pkgdown.yml | ||
^CRAN-SUBMISSION$ | ||
^cran-comments\.md$ | ||
^.lintr |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
linters: linters_with_defaults( | ||
object_name_linter = object_name_linter(styles = c("camelCase", "snake_case", "symbols"))) | ||
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 |
---|---|---|
|
@@ -4,8 +4,8 @@ Title: Achilles Data Source Characterization | |
Version: 1.7.2 | ||
Date: 2023-05-11 | ||
Authors@R: c( | ||
person("Frank", "DeFalco", email = "[email protected]", role = c("aut","cre")), | ||
person("Patrick", "Ryan", email = "[email protected]", role = c("aut")), | ||
person("Frank", "DeFalco", email = "[email protected]", role = c("aut","cre")), | ||
person("Patrick", "Ryan", email = "[email protected]", role = c("aut")), | ||
person("Martijn", "Schuemie", email = "[email protected]", role = c("aut")), | ||
person("Vojtech", "Huser", role = c("aut")), | ||
person("Chris", "Knoll", role = c("aut")), | ||
|
@@ -16,17 +16,19 @@ Authors@R: c( | |
) | ||
Maintainer: Frank DeFalco <[email protected]> | ||
LazyData: true | ||
Description: Automated Characterization of Health Information at Large-Scale | ||
Longitudinal Evidence Systems. Creates a descriptive statistics summary for | ||
an Observational Medical Outcomes Partnership Common Data Model standardized | ||
data source. This package includes functions for executing summary queries on | ||
the specified data source and exporting reporting content for use across a | ||
variety of Observational Health Data Sciences and Informatics community | ||
applications. | ||
Description: Automated Characterization of Health Information at Large-Scale | ||
Longitudinal Evidence Systems. Creates a descriptive statistics summary for | ||
an Observational Medical Outcomes Partnership Common Data Model standardized | ||
data source. This package includes functions for executing summary queries on | ||
the specified data source and exporting reporting content for use across a | ||
variety of Observational Health Data Sciences and Informatics community | ||
applications. | ||
Depends: | ||
DatabaseConnector (>= 2.0.0), | ||
R (>= 4.0.0) | ||
Imports: | ||
DBI, | ||
duckdb, | ||
SqlRender (>= 1.6.0), | ||
dplyr, | ||
jsonlite, | ||
|
Oops, something went wrong.