Skip to contents

This page is only meant for demonstration purposes. Users can see what they entered and which code was being saved. The page is only included in the questionnaire_demo(), but not in the other questionnaire templates.

Usage

page_results(...)

Arguments

...

All additional parameters are passed to new_page()

Value

A page object.

See also

Examples

data.table::setDTthreads(1)

if (FALSE) {
my_questionnaire <- list(
  page_first_freetext(),
  page_second_freetext(),
  page_select_suggestion(),
  page_none_selected_freetext(),
  page_followup(1),
  page_followup(2),
  page_results()
)
if (interactive()) {
  app(questionnaire = my_questionnaire)
}
}