-
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 branch 'dev' into ndefries/epidatasets-migration
- Loading branch information
Showing
74 changed files
with
4,225 additions
and
3,790 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 |
---|---|---|
|
@@ -16,3 +16,5 @@ | |
^.lintr$ | ||
^DEVELOPMENT.md$ | ||
man-roxygen | ||
^.venv$ | ||
^sandbox.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ docs | |
renv/ | ||
renv.lock | ||
.Rprofile | ||
sandbox.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
Type: Package | ||
Package: epiprocess | ||
Title: Tools for basic signal processing in epidemiology | ||
Version: 0.8.4 | ||
Version: 0.9.0 | ||
Authors@R: c( | ||
person("Jacob", "Bien", role = "ctb"), | ||
person("Logan", "Brooks", email = "[email protected]", role = c("aut", "cre")), | ||
person("Logan", "Brooks", , "[email protected]", role = c("aut", "cre")), | ||
person("Rafael", "Catoia", role = "ctb"), | ||
person("Nat", "DeFries", role = "ctb"), | ||
person("Daniel", "McDonald", role = "aut"), | ||
|
@@ -15,27 +15,35 @@ Authors@R: c( | |
person("Evan", "Ray", role = "aut"), | ||
person("Dmitry", "Shemetov", role = "ctb"), | ||
person("Ryan", "Tibshirani", role = "aut"), | ||
person("Lionel", "Henry", role = "ctb", comment = "Author of included rlang fragments"), | ||
person("Hadley", "Wickham", role = "ctb", comment = "Author of included rlang fragments"), | ||
person("Posit", role = "cph", 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") | ||
person("Lionel", "Henry", role = "ctb", | ||
comment = "Author of included rlang fragments"), | ||
person("Hadley", "Wickham", role = "ctb", | ||
comment = "Author of included rlang fragments"), | ||
person("Posit", role = "cph", | ||
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 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. | ||
License: MIT + file LICENSE | ||
Copyright: file inst/COPYRIGHTS | ||
URL: https://cmu-delphi.github.io/epiprocess/ | ||
Depends: | ||
R (>= 3.6) | ||
Imports: | ||
checkmate, | ||
cli, | ||
data.table, | ||
dplyr (>= 1.0.8), | ||
epidatasets, | ||
genlasso, | ||
glue, | ||
ggplot2, | ||
lifecycle (>= 1.0.1), | ||
lubridate, | ||
|
@@ -48,7 +56,8 @@ Imports: | |
tidyselect (>= 1.2.0), | ||
tsibble, | ||
utils, | ||
vctrs | ||
vctrs, | ||
waldo | ||
Suggests: | ||
covidcast, | ||
devtools, | ||
|
@@ -63,21 +72,21 @@ VignetteBuilder: | |
Remotes: | ||
cmu-delphi/epidatasets, | ||
cmu-delphi/epidatr, | ||
reconverse/outbreaks, | ||
glmgen/genlasso | ||
glmgen/genlasso, | ||
reconverse/outbreaks | ||
Config/testthat/edition: 3 | ||
Config/testthat/parallel: true | ||
Copyright: file inst/COPYRIGHTS | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.3.2 | ||
Depends: | ||
R (>= 2.10) | ||
URL: https://cmu-delphi.github.io/epiprocess/ | ||
Collate: | ||
'archive.R' | ||
'autoplot.R' | ||
'correlation.R' | ||
'epi_df.R' | ||
'epi_df_forbidden_methods.R' | ||
'epiprocess.R' | ||
'group_by_epi_df_methods.R' | ||
'methods-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
Oops, something went wrong.