wq_numerical {swirlify} | R Documentation |
Template for exact numerical question
Description
Template for exact numerical question
Usage
wq_numerical(output = "explain the question here",
correct_answer = "42", answer_tests = "omnitest(correctVal=42)",
hint = "hint")
Arguments
output |
Text that is displayed to the user. |
correct_answer |
The numerical answer to the question. |
answer_tests |
An internal function from |
hint |
A string that is printed to the console if the user answers this question incorrectly. |
Examples
## Not run:
# While writing a new lesson by hand just use:
wq_numerical()
# If converting from another format to a swirl course you may want to sue the
# API:
wq_numerical("The golden ratio is closest to what integer?",
"2", "omnitest(correctVal=2)", "It's greater than 1 and less than 3.")
## End(Not run)
[Package swirlify version 0.5.3 Index]