get_signals_aeddo.Rd
This function retrieves outbreak signals using the aeddo algorithm. It processes surveillance data, aggregates it based on specified date variables, and applies the aeddo algorithm to detect potential outbreaks.
data.frame, aggregated data with case counts
integer, specifying the number of weeks to generate signals for
The population size for the aeddo algorithm. Default is 1.
The quantile from the random effects distribution used for defining the for outbreak detection threshold, a numeric value between 0 and 1.
logical value indicating whether past outbreak related observations should be excluded from future parameter estimation.
An integer specifying the rolling window size employed for parameter estimation.
Initial values for model parameters in optimization.
Lower bounds for optimization parameters.
Upper bounds for optimization parameters.
The optimization method to use, either "BFGS" (default) or "L-BFGS-B".
An object containing outbreak signals detected by the aeddo algorithm.
For information on the aeddo algorithm, refer to the package documentation.
aeddo
for details on the aeddo algorithm.
if (FALSE) {
data_aggregated <- input_example %>%
preprocess_data() %>%
aggregate_data() %>%
add_rows_missing_dates()
results <- get_signals_aeddo(data_aggregated)
}