#' @title User input
#'
#' @param overrides a named list of parameter values to use instead of defaults
#' The parameters are defined below, and are taken from the default values of
#' the ESFT.
#'
#' @description
#' Given that these are just three - don't know if these are
#' useful. Basically this is what is in the input/user dashboard tab that isn't
#' captured through other parameter-setting functions.
#' Plus, there are no checks of type in this function, nor is it entirely clear
#' where this leads into. So there's a potential to get rid of this one or
#' consolidate it with another.
#'
#' User Input Parameters:
#' \itemize{
#' \item{forecast_period}{ - weeks from start date that you want to forecast
#' from; default = 12}
#' \item{delivery_leadtime}{ - time in weeks until shipment received
#' (between 0-1). note - if this is set to 1, this pushed the forecast period
#' out 1 week to factor in delivery time; default = 0}
#' \item{week1}{ - date from which the forecast starts (year-month-date);
#' default = "2022-01-03"}
#' \item{scenario}{ - Default is medium transmission, with an R(0) number or
#' R(eff) number of 0.94. Other options include "Low", with an R(0) or R(eff) of
#' 0.47, which simulates a 50 percent decrease in transmission, or "High", with
#' an R(0) or R(eff) of 1.41, which simulates a 50 percent increase in
#' transmission.}
#' }
#' @export
user_input <- function(overrides = list()) {
input <- list(
# case severity distribution
forecast_period = 12,
delivery_leadtime = 0,
week1 = "2022-01-03",
scenario = "Medium"
)
# Override parameters with any client specified ones
if (!is.list(overrides)) {
stop("overrides must be a list")
}
for (name in names(overrides)) {
if (!(name %in% names(input))) {
stop(paste("unknown input parameter", name, sep = " "))
}
input[[name]] <- overrides[[name]]
}
input
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.