Skip to content

Commit df235d7

Browse files
committed
bump version, pass local checks
1 parent 3ef79b9 commit df235d7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
# Created with usethis + edited to use API key.
55
on:
66
push:
7-
branches: [main, master, v0.0.6]
7+
branches: [main, master]
88
pull_request:
9-
branches: [main, master, v0.0.6]
9+
branches: [main, master]
1010

1111
name: R-CMD-check
1212

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: epipredict
22
Title: Basic epidemiology forecasting methods
3-
Version: 0.0.5
3+
Version: 0.0.6
44
Authors@R: c(
55
person("Daniel", "McDonald", , "[email protected]", role = c("aut", "cre")),
66
person("Ryan", "Tibshirani", , "[email protected]", role = "aut"),

R/flusight_hub_formatter.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ flusight_hub_formatter.data.frame <- function(
9393
dplyr::mutate(.pred_distn = nested_quantiles(.pred_distn)) %>%
9494
dplyr::rowwise() %>%
9595
dplyr::mutate(
96-
.pred_distn = list(add_row(.pred_distn, q = .pred, tau = NA)),
96+
.pred_distn = list(add_row(.pred_distn, values = .pred, quantile_levels = NA)),
9797
.pred = NULL
9898
) %>%
9999
tidyr::unnest(.pred_distn) %>%
100100
# now we create the correct column names
101101
dplyr::rename(
102-
value = q,
103-
output_type_id = tau,
102+
value = values,
103+
output_type_id = quantile_levels,
104104
reference_date = forecast_date
105105
) %>%
106106
# convert to fips codes, and add any constant cols passed in ...

0 commit comments

Comments
 (0)