Skip to contents

The basic default questionnaire. View the function's code to see the used pages. This function is meant as a template that can be changed to meet your requirements.

Usage

questionnaire_web_survey(show_feedback_page = TRUE)

Arguments

show_feedback_page

Show the page_feedback() to evaluate the fit of the chosen suggestion.

Value

A questionnaire for app(), i.e. a list of pages.

Examples

data.table::setDTthreads(1)

if (FALSE) {
# Inspect the code to create the questionnaire_web_survey
print(questionnaire_web_survey)

if (interactive()) {
  # Run the app with the questionnaire_web_survey
  app(questionnaire = questionnaire_web_survey())
}

if (interactive()) {
  # This is used by default within app
  app()
}
}