-
Notifications
You must be signed in to change notification settings - Fork 8
Move to CI, include data, clean up dependencies, add examples #77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
bda3f17
add roxygen example
ChloeYou e2eb164
example added to epi_slide roxygen
ChloeYou 4a14dc8
add codeowners
dajmcdon 5cb9f3e
add others
dajmcdon 8c7812b
only me for now
dajmcdon 6d4a510
test the action
dajmcdon 5df7d9b
add slide and cor examples; add internal dataset for example
ChloeYou bd3f0f8
Update R-CMD-check.yaml
dajmcdon 9fbc24b
try installing from my fork
dajmcdon 9344e0b
remove unnecessary extra install
dajmcdon 549fde7
add example and epi_archive builtin data
ChloeYou d18500b
R code cleanup -> R CMD Check passes (notes only)
dajmcdon ef38df6
ensure there's no stray crud in vignettes/
dajmcdon b08ef12
redocument everything
dajmcdon cb5fc34
clean up the description
dajmcdon c3bd254
add in gh CI checks now that we should pass
dajmcdon a742048
merge description/r-cmd-check.yaml
dajmcdon 27065e0
change the dependency back to my fork
dajmcdon 7f4384e
add missing dependencies for vignettes
dajmcdon df56278
local checks pass, but there's still a bug in the archive vignette
dajmcdon 4b27914
allow an error in the archive vignette. I cannot determine the reason…
dajmcdon 5265efa
Merge pull request #4 from dajmcdon/djm-main
dajmcdon f92f55c
create new built-in dataset and document; update examples in roxygen
ChloeYou 0682295
Replaced all instances of gginnards.
kenmawer 843e41d
resolve conflicts
ChloeYou 8d819fa
resolve build check warning
ChloeYou 758fd5c
make changes according to PR feedback
ChloeYou 094bf64
outlier examples added
ChloeYou 03b083d
save wip epix method examples
ChloeYou c8707a0
finish examples for epix_
ChloeYou 763af8b
Merge branch 'main' into km/remove-gginnards
kenmawer 74761ac
Removed gginnards
kenmawer c910106
resolve dplyr::select issue in examples
ChloeYou 0b16591
Merge pull request #5 from dajmcdon/cy-add-roxygen-example
dajmcdon e1cbd56
Merge branch 'main' of https://github.com/dajmcdon/epiprocess into km…
kenmawer c5f09ef
Fixed the wrong layering of the ggplots.
kenmawer 062125b
Merge pull request #6 from dajmcdon/km/remove-gginnards
dajmcdon ccf748a
rebuild docs
dajmcdon f14db2d
kill conflict
dajmcdon 3c83c72
handle minor formatting feedback from @brookslogan
dajmcdon a40e0b0
update data to include tx and ny for correlation example
ChloeYou 9a99218
add licensing to data.R
ChloeYou 76b43bd
rename example data with suffix
ChloeYou 5c954c5
add examples without latency warning in slide.R
ChloeYou 2df3625
handle feedback from @brookslogan #77
ChloeYou f9d070a
handle feedback from @brookslogan #77
ChloeYou 504f2fe
change to internal data in vignettes; add attribution to vignettes; s…
ChloeYou 6220f9e
changed all vignette datasets
ChloeYou d8cf124
change example to match change in internal data
ChloeYou 6c8f252
change license back to MIT
ChloeYou b62552e
Merge pull request #10 from dajmcdon/cy-add-roxygen-example
dajmcdon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,3 +1,8 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^LICENSE\.md$ | ||
^\.github$ | ||
^docs$ | ||
^_pkgdown.yml | ||
^index\.md$ | ||
^data-raw$ |
This file contains hidden or 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 @@ | ||
*.html |
This file contains hidden or 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 @@ | ||
@dajmcdon |
This file contains hidden or 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,29 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples | ||
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
on: | ||
push: | ||
branches: [main, master] | ||
pull_request: | ||
branches: [main, master] | ||
|
||
name: R-CMD-check | ||
|
||
jobs: | ||
R-CMD-check: | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
R_KEEP_PKG_SOURCE: yes | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::rcmdcheck | ||
needs: check | ||
|
||
- uses: r-lib/actions/check-r-package@v2 |
This file contains hidden or 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 |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
.RData | ||
.Ruserdata | ||
*.Rproj | ||
inst/doc |
This file contains hidden or 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,63 +1,56 @@ | ||
Package: epiprocess | ||
Type: Package | ||
Package: epiprocess | ||
Title: Tools for basic signal processing in epidemiology | ||
Version: 1.0.0 | ||
Authors@R: | ||
c( | ||
person(given = "Jacob", | ||
family = "Bien", | ||
role = "ctb"), | ||
person(given = "Logan", | ||
family = "Brooks", | ||
role = "aut"), | ||
person(given = "Rafael", | ||
family = "Catoia", | ||
role = "ctb"), | ||
person(given = "Daniel", | ||
family = "McDonald", | ||
role = "ctb"), | ||
person(given = "Quang", | ||
family = "Nguyen", | ||
role = "ctb"), | ||
person(given = "Evan", | ||
family = "Ray", | ||
role = "aut"), | ||
person(given = "Dmitry", | ||
family = "Shemetov", | ||
role = "ctb"), | ||
person(given = "Ryan", | ||
family = "Tibshirani", | ||
role = c("aut", "cre"), | ||
email = "[email protected]")) | ||
Description: This package introduces a common data structure for epidemiological | ||
data sets measured over space and time, and offers associated utilities to | ||
perform basic signal processing tasks. | ||
Authors@R: c( | ||
person("Jacob", "Bien", role = "ctb"), | ||
person("Logan", "Brooks", role = "aut"), | ||
person("Rafael", "Catoia", role = "ctb"), | ||
person("Daniel", "McDonald", role = "ctb"), | ||
person("Quang", "Nguyen", role = "ctb"), | ||
person("Evan", "Ray", role = "aut"), | ||
person("Dmitry", "Shemetov", role = "ctb"), | ||
person("Ryan", "Tibshirani", , "[email protected]", role = c("aut", "cre")) | ||
) | ||
Description: This package introduces a common data structure for | ||
epidemiological data sets measured over space and time, and offers | ||
associated utilities to perform basic signal processing tasks. | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.1.2 | ||
Remotes: | ||
cmu-delphi/delphi-epidata-r, | ||
reconverse/outbreaks | ||
Imports: | ||
data.table, | ||
delphi.epidata, | ||
dplyr, | ||
fabletools, | ||
feasts, | ||
genlasso, | ||
lubridate, | ||
magrittr, | ||
purrr, | ||
R6, | ||
rlang, | ||
slider, | ||
tibble, | ||
tidyselect, | ||
tidyr, | ||
tsibble | ||
data.table, | ||
dplyr, | ||
fabletools, | ||
feasts, | ||
generics, | ||
genlasso, | ||
lubridate, | ||
magrittr, | ||
purrr, | ||
R6, | ||
rlang, | ||
slider, | ||
tibble, | ||
tidyr, | ||
tidyselect, | ||
tsibble, | ||
utils | ||
Suggests: | ||
outbreaks, | ||
testthat (>= 3.0.0), | ||
covidcast, | ||
delphi.epidata, | ||
ggplot2, | ||
knitr, | ||
outbreaks, | ||
rmarkdown, | ||
testthat (>= 3.0.0) | ||
VignetteBuilder: | ||
knitr | ||
Remotes: | ||
dajmcdon/delphi.epidata, | ||
reconverse/outbreaks | ||
Config/testthat/edition: 3 | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.2.0 | ||
Depends: | ||
R (>= 2.10) |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.