Add options to plot single FOI estimates and
r-hats:
We introduced parameters plot_constant and
x_axis to the visualisation functions of the package. These
enable the option to plot constant FoI estimates and their corresponding
r-hat values, avoiding ambiguity in the specification of the x-axis by
means of x_axis = "time" or
x_axis = "age".
Minor changes
Documentation corrections
Fix incorrect cross referencing in documentation
Update table 1 in article foi_models to show the prior
specification options available in the package.
Add example of a particular model specification using the package in
article foi_models
Complete missing documentation and tags.
Shorten long function and internal parameter names (mainly
in the simulation module)
Change seroprevalence_ and seropositive_
for seroprev_
Change probability_ for prob_
Remove _model
Other
Make consistent use of Force-of-Infection (FoI) acronym across the
package
Fix broken link to contributing guidelines in
README
Internal changes
Implement lintr v3.2.0 new suggestions
Update the stan code to use new syntax.
Update workflows based on Epiverse template.
Remove Hmisc dependency.
Replace Matrix package for expm
Add donttest to examples taking too long to run
serofoi 1.0.2
New features
Serological surveys simulation functionalities
Introduce enhanced data simulation functionalities to support a
broader range of use cases for serosurvey analysis.
Add a dedicated vignette for data simulation to guide users on
simulating data for serosurveys.
Enables the implementation of a wide variety of new
models
Add forward random walk age-varying models with uniform and normal
priors.
Improves previous implementation of forward random walk time-varying
models.
Enables prior distributions specifications by means of package
specific functions like sf_normal() and
sf_uniform().
Support for seroreversion rate estimation for all models with
uniform and normal priors.
Breaking changes
Replaced old modelling and visualization functions, making Bayesian
model selection and specification more flexible.
New models and functionalities include constant, time-varying, and
age-varying models, as well as options for estimating seroreversion
rates.
Updated the R-hat convergence threshold for model convergence
diagnostics to R-hat<1.01, following Vehtari
et al. (2021).
Minor changes
Remove the simdata_* datasets from the package and
replaced them with code-based simulation in vignettes.
Add missing examples to exported functions
Add missing documentation entries
Internal changes
Unit testing
Added unit tests for key package functionalities, including:
fit_seromodel() function (#213).
Visualization functionalities (#215).
build_stan_data and related functions (#232).
Validation functions (#235).
Test coverage increased to 100%
Refactorization of simulation examples
Replaced static simulated datasets in tests and vignettes with
dynamic examples using data simulation functions.
Documentation improvements
Enhanced documentation for new functionalities and updated vignettes
to reflect recent changes.
serofoi 0.1.0
New features
Data simulation functions from time-varying or age-varying force
of infection trends. The following is an example to simulate from a
constant (in time) force of infection:
Now, the output is a stan_fit object as obtained from
rstan::sampling.
Because of this, some plotting functionalities now require
serodata as an input.
Initial prior distribution parameters foi_location
and foi_scale can be specified explicitly in
fit_seromodel:
Depending on the selected model foi_model, the meaning
of the parameters change. For the tv_normal_log model these
parameters must be in logarithmic scale; the recommended usage is:
Deprecate run_seromodel. Initially
this function was intended to be a handler for
fit_seromodel for cases when the user may need to implement
the same model to multiple independent serosurveys; now we plan to
showcase examples of this using the current functionalities of the
package (to be added in future versions to the vignettes).
Minor changes
Refactorization of the visualization module
plot_seroprev allows for data binning (age group
manipulation) by means of parameters bin_data=TRUE and
bin_step.
Automatic selection of ymin and ymax
aesthetics plotting functions (with the exception of
plot_rhats).
Correct input validation
Remove duplicated data in veev2012 dataset
Internal changes
Remove large files from git history (see #77).
Added input validation for the following functions:
prepare_serodata
generate_sim_data
get_age_group
fit_seromodel
extract_seromodel_summary
plot_seroprev
plot_seroprev_fitted
plot_foi
plot_seromodel
Unit testing:
Separate modelling tests by model
Use of dplyr::near to test models statistical
validity
Implementation of package modules: Incorporates data preparation,
modelling, and visualization modules, they enable efficient handling of
data, perform statistical modelling, and generate visual representations
of the results.
Documentation: It consists of vignettes, a website, and uses cases
that provide detailed instructions on how to use the package
effectively.
Implementation of 3 models for calculating the Force-of-Infection
(FoI): The first model is the constant or endemic model, which assumes a
stable FoI over time. The second and third models are time-varying, with
the normal FoI model representing a slow change in FoI and the
normal-log FoI model representing a fast epidemic change in FoI.
Definition of coverage test to assurance the quality of the
package.
Overall, this release introduces essential package functionality,
comprehensive documentation, various FoI models, and a coverage test,
enabling users to analyse seroprevalence data and calculate the
Force-of-infection.