Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: epipredict
Title: Basic epidemiology forecasting methods
Version: 0.2.0
Version: 0.2.1
Authors@R: c(
person("Daniel J.", "McDonald", , "daniel@stat.ubc.ca", role = c("aut", "cre")),
person("Ryan", "Tibshirani", , "ryantibs@cmu.edu", role = "aut"),
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Pre-1.0.0 numbering scheme: 0.x will indicate releases, while 0.0.x will indicate PR's.

# epipredict 0.2.1

- Fix bug in `flusight_hub_formatter()` so that it works as expected even if the user has not first loaded the `epidatasets` package.

# epipredict 0.2

## Breaking changes
Expand Down
4 changes: 2 additions & 2 deletions R/flusight_hub_formatter.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
location_to_abbr <- function(location) {
dictionary <-
state_census %>%
epidatasets::state_census %>%
dplyr::transmute(
location = dplyr::case_match(fips, "00" ~ "US", .default = fips),
abbr
Expand All @@ -10,7 +10,7 @@ location_to_abbr <- function(location) {

abbr_to_location <- function(abbr) {
dictionary <-
state_census %>%
epidatasets::state_census %>%
dplyr::transmute(
location = dplyr::case_match(fips, "00" ~ "US", .default = fips),
abbr
Expand Down
2 changes: 1 addition & 1 deletion man/autoplot-epipred.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions man/step_adjust_latency.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.