An optional, second free text question if the first didn't yield suggestions.
Source:R/questionnaire_pages.R
page_second_freetext.Rd
If the first freetext question didn't provide satisfactory results, ask for more details and try again.
Usage
page_second_freetext(
combine_input_with_first = TRUE,
is_interview = FALSE,
aggregate_score_threshold = 0.02,
...
)
Arguments
- combine_input_with_first
Should input be combined with the previous question?
- 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.
- aggregate_score_threshold
The total sum of the scores of the suggestions has to be higher than this threshold for suggestions to be shown. The parameter is passed on to
get_job_suggestions()
.- ...
All additional parameters are passed to
new_page()
Examples
if (FALSE) { # \dontrun{
my_questionnaire <- list(
page_first_freetext(),
page_second_freetext(),
page_select_suggestion(),
page_none_selected_freetext(),
page_followup(1),
page_followup(2)
)
if (interactive()) {
app(questionnaire = my_questionnaire)
}
} # }