This application is part of the large set of tools, to facilitate survey implementation with Survey Solutions. Questionnaires created in Survey Solutions designer, can either be loaded directly from the data collection server, or through the upload of an exported json string. Manual content can be provide through text input fields. The resulting manual can be downloaded either es HTML, Word or PowerPoint document.
Installation
Install R: https://cran.r-project.org/mirrors.html (version 4.1.1 or greater)
Install R Studio: https://rstudio.com/products/rstudio/download/ (version 1.2.5001-3 or newer)
Make sure the devtools package is installed, if not install it with:
install.packages("devtools")
- After that install the actual package:
devtools::install_github("michael-cw/susoquestionnairemanual")
Start the application from RStudio
library(susoquestionnairemanual)
susoquestionnairemanual::runQuestManualApp()
Start the application on a Shiny Server
In case you are considering to run the application on a shiny server, you just need to create the following app.R script in your shiny server app directory:
library(susoquestionnairemanual)
susoquestionnairemanual::runQuestManualAppServer()