Skip to content

Commit

Permalink
Merge pull request #206 from signaturescience/205-bug-with-plausibili…
Browse files Browse the repository at this point in the history
…ty-analysis-code-in-explorer-app

205 bug with plausibility analysis code in explorer app
  • Loading branch information
vpnagraj authored Jan 17, 2024
2 parents 8e4456c + 66bbf74 commit 07d7c9c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: fiphde
Title: Forecasting Influenza in Support of Public Health Decision Making
Version: 2.0.0
Version: 2.0.1
Authors@R:
c(person(given = "VP",
family = "Nagraj",
Expand Down
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# fiphde 2.0.1

## Bug fixes

### Explorer app internal object naming

This release resolves an issue with naming of an internal object in the plausibility analysis section of the explorer app.

# fiphde 2.0.0

## New features
Expand Down
2 changes: 1 addition & 1 deletion inst/app/app.R
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ server <- function(input, output) {
## possible that there are multiple models with the same "forecast" date
## using two steps
tmp_fp <- grep(input$forecast, fps, value = TRUE)
tmp_fp <- grep(input$model, tmp_fps, value = TRUE)
tmp_fp <- grep(input$model, tmp_fp, value = TRUE)
forc <- rplanes::read_forecast(tmp_fp, format = input$format)
forc_signal <- to_signal(forc, outcome = "flu.admits", type = "forecast", resolution = "weeks", horizon = 4)

Expand Down

0 comments on commit 07d7c9c

Please sign in to comment.