-
Notifications
You must be signed in to change notification settings - Fork 8
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 #550 from cmu-delphi/dev
Sync dev -> main
- Loading branch information
Showing
110 changed files
with
4,650 additions
and
4,106 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
|
||
[*] | ||
|
||
# Change these settings to your own preference | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
# We recommend you to keep these unchanged | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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,7 +1,7 @@ | ||
Type: Package | ||
Package: epiprocess | ||
Type: Package | ||
Title: Tools for basic signal processing in epidemiology | ||
Version: 0.9.0 | ||
Version: 0.9.6 | ||
Authors@R: c( | ||
person("Jacob", "Bien", role = "ctb"), | ||
person("Logan", "Brooks", , "[email protected]", role = c("aut", "cre")), | ||
|
@@ -20,13 +20,19 @@ Authors@R: c( | |
person("Hadley", "Wickham", role = "ctb", | ||
comment = "Author of included rlang fragments"), | ||
person("Posit", role = "cph", | ||
comment = "Copyright holder of included rlang fragments") | ||
comment = "Copyright holder of included rlang fragments"), | ||
person("Johns Hopkins University Center for Systems Science and Engineering", role = "dtc", | ||
comment = "Owner of COVID-19 cases and deaths data from the COVID-19 Data Repository"), | ||
person("Johns Hopkins University", role = "cph", | ||
comment = "Copyright holder of COVID-19 cases and deaths data from the COVID-19 Data Repository"), | ||
person("Carnegie Mellon University Delphi Group", role = "dtc", | ||
comment = "Owner of claims-based CLI data from the Delphi Epidata API") | ||
) | ||
Description: This package introduces a common data structure for | ||
epidemiological data reported by location and time, provides another | ||
data structure to work with revisions to these data sets over time, | ||
and offers associated utilities to perform basic signal processing | ||
tasks. | ||
Description: This package introduces common data structures for working with | ||
epidemiological data reported by location and time and offers associated | ||
utilities to perform basic signal processing tasks. The package is designed | ||
to be used in conjunction with `epipredict` for building and evaluating | ||
epidemiological models. | ||
License: MIT + file LICENSE | ||
URL: https://cmu-delphi.github.io/epiprocess/ | ||
Depends: | ||
|
@@ -35,7 +41,8 @@ Imports: | |
checkmate, | ||
cli, | ||
data.table, | ||
dplyr (>= 1.0.8), | ||
dplyr (>= 1.1.0), | ||
epidatasets, | ||
genlasso, | ||
ggplot2, | ||
glue, | ||
|
@@ -53,17 +60,19 @@ Imports: | |
vctrs, | ||
waldo | ||
Suggests: | ||
covidcast, | ||
devtools, | ||
epidatr, | ||
here, | ||
knitr, | ||
outbreaks, | ||
readr, | ||
rmarkdown, | ||
testthat (>= 3.1.5), | ||
withr | ||
VignetteBuilder: | ||
knitr | ||
Remotes: | ||
cmu-delphi/epidatasets, | ||
cmu-delphi/epidatr, | ||
glmgen/genlasso, | ||
reconverse/outbreaks | ||
|
@@ -78,10 +87,9 @@ Collate: | |
'archive.R' | ||
'autoplot.R' | ||
'correlation.R' | ||
'data.R' | ||
'epi_df.R' | ||
'epi_df_forbidden_methods.R' | ||
'epiprocess.R' | ||
'epiprocess-package.R' | ||
'group_by_epi_df_methods.R' | ||
'methods-epi_archive.R' | ||
'grouped_epi_archive.R' | ||
|
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
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.