Page to receive feedback on how well the chosen suggestion fits
Source:R/questionnaire_pages.R
page_feedback.Rd
Page to receive feedback on how well the chosen suggestion fits
Arguments
- is_interview
Should the page show slightly different / additional instructions and answer options for an interview that is conducted by another person? Defaults to FALSE.
- ...
All additional parameters are passed first passed on to
page_choose_one_option()
and thennew_page()
.
Examples
if (FALSE) { # \dontrun{
my_questionnaire <- list(
page_first_freetext(),
page_select_suggestion(),
page_feedback()
)
if (interactive()) {
app(questionnaire = my_questionnaire)
}
} # }