-
Notifications
You must be signed in to change notification settings - Fork 10
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 #283 from cmu-delphi/ds/check_enough_train_data
feat: check_enough_train_data
- Loading branch information
Showing
14 changed files
with
474 additions
and
34 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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
^renv$ | ||
^renv\.lock$ | ||
^epipredict\.Rproj$ | ||
^\.Rproj\.user$ | ||
^LICENSE\.md$ | ||
|
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 |
---|---|---|
|
@@ -7,3 +7,6 @@ inst/doc | |
.DS_Store | ||
/doc/ | ||
/Meta/ | ||
.Rprofile | ||
renv.lock | ||
renv/ |
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,6 +1,6 @@ | ||
Package: epipredict | ||
Title: Basic epidemiology forecasting methods | ||
Version: 0.0.7 | ||
Version: 0.0.8 | ||
Authors@R: c( | ||
person("Daniel", "McDonald", , "[email protected]", role = c("aut", "cre")), | ||
person("Ryan", "Tibshirani", , "[email protected]", role = "aut"), | ||
|
@@ -22,11 +22,11 @@ License: MIT + file LICENSE | |
URL: https://github.com/cmu-delphi/epipredict/, | ||
https://cmu-delphi.github.io/epipredict | ||
BugReports: https://github.com/cmu-delphi/epipredict/issues/ | ||
Depends: | ||
Depends: | ||
epiprocess (>= 0.6.0), | ||
parsnip (>= 1.0.0), | ||
R (>= 3.5.0) | ||
Imports: | ||
Imports: | ||
cli, | ||
distributional, | ||
dplyr, | ||
|
@@ -48,7 +48,7 @@ Imports: | |
usethis, | ||
vctrs, | ||
workflows (>= 1.0.0) | ||
Suggests: | ||
Suggests: | ||
covidcast, | ||
data.table, | ||
epidatr (>= 1.0.0), | ||
|
@@ -61,7 +61,7 @@ Suggests: | |
rmarkdown, | ||
testthat (>= 3.0.0), | ||
xgboost | ||
VignetteBuilder: | ||
VignetteBuilder: | ||
knitr | ||
Remotes: | ||
cmu-delphi/epidatr, | ||
|
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,44 +1,49 @@ | ||
# epipredict (development) | ||
|
||
# epipredict 0.0.8 | ||
|
||
- add `check_enough_train_data` that will error if training data is too small | ||
- added `check_enough_train_data` to `arx_forecaster` | ||
|
||
# epipredict 0.0.7 | ||
|
||
* simplify `layer_residual_quantiles()` to avoid timesuck in `utils::methods()` | ||
- simplify `layer_residual_quantiles()` to avoid timesuck in `utils::methods()` | ||
|
||
# epipredict 0.0.6 | ||
|
||
* rename the `dist_quantiles()` to be more descriptive, breaking change) | ||
* removes previous `pivot_quantiles()` (now `*_wider()`, breaking change) | ||
* add `pivot_quantiles_wider()` for easier plotting | ||
* add complement `pivot_quantiles_longer()` | ||
* add `cdc_baseline_forecaster()` and `flusight_hub_formatter()` | ||
- rename the `dist_quantiles()` to be more descriptive, breaking change) | ||
- removes previous `pivot_quantiles()` (now `*_wider()`, breaking change) | ||
- add `pivot_quantiles_wider()` for easier plotting | ||
- add complement `pivot_quantiles_longer()` | ||
- add `cdc_baseline_forecaster()` and `flusight_hub_formatter()` | ||
|
||
# epipredict 0.0.5 | ||
|
||
* add `smooth_quantile_reg()` | ||
* improved printing of various methods / internals | ||
* canned forecasters get a class | ||
* fixed quantile bug in `flatline_forecaster()` | ||
* add functionality to output the unfit workflow from the canned forecasters | ||
- add `smooth_quantile_reg()` | ||
- improved printing of various methods / internals | ||
- canned forecasters get a class | ||
- fixed quantile bug in `flatline_forecaster()` | ||
- add functionality to output the unfit workflow from the canned forecasters | ||
|
||
# epipredict 0.0.4 | ||
|
||
* add quantile_reg() | ||
* clean up documentation bugs | ||
* add smooth_quantile_reg() | ||
* add classifier | ||
* training window step debugged | ||
* `min_train_window` argument removed from canned forecasters | ||
- add quantile_reg() | ||
- clean up documentation bugs | ||
- add smooth_quantile_reg() | ||
- add classifier | ||
- training window step debugged | ||
- `min_train_window` argument removed from canned forecasters | ||
|
||
# epipredict 0.0.3 | ||
|
||
* add forecasters | ||
* implement postprocessing | ||
* vignettes avaliable | ||
* arx_forecaster | ||
* pkgdown | ||
- add forecasters | ||
- implement postprocessing | ||
- vignettes avaliable | ||
- arx_forecaster | ||
- pkgdown | ||
|
||
# epipredict 0.0.0.9000 | ||
|
||
* Publish public for easy navigation | ||
* Two simple forecasters as test beds | ||
* Working vignette | ||
- Publish public for easy navigation | ||
- Two simple forecasters as test beds | ||
- Working vignette |
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.