Shiny apps can often make use of the same key elements, formods provides modules for common tasks (data upload, wragling data, figure genration and saving the app state). These modules can react and interact as well as generate code to create reproducable analyses. formods also defines a framework for creating reactive modules. The vignettes outline how to use these modules as well as how to create other modules within this framework.
Installation
From CRAN
You can install the released version of formods from CRAN with:
install.packages("formods")
Development version
You can install the development version from GitHub with:
# Installing devtools if it's not already installed
if(system.file(package="devtools") == ""){
install.packages("devtools")
}
devtools::install_github("john-harrold/onbrand", dependencies=TRUE)
devtools::install_github("john-harrold/formods", dependencies=TRUE)
Note that because formods
depends on onbrand
you will need to first install the development version of onbrand
.