The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
BayesSurveillance is an R package for Bayesian adaptive surveillance and intervention learning.
library(BayesSurveillance)
dat <- simulate_surveillance_data(seed = 1)
fit <- fit_bewrs(dat)
risk <- compute_dynamic_bewrs(fit)
peib <- estimate_peib(risk)
policy <- recommend_action(peib)
evaluate_policy(policy)old_dat <- simulate_surveillance_data(seed = 1)
new_dat <- simulate_surveillance_data(seed = 2)
updated_policy <- update_policy(old_dat, new_dat)
evaluate_policy(updated_policy)
# Or run the full pipeline directly
policy2 <- adaptive_update(new_dat)The package extends BEWRS from early-warning risk prediction to adaptive intervention learning:
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.