preview_app {shinyquiz} | R Documentation |
Tools for previewing quizzes
Description
Launch a viewer to preview the structure of the questions in a quiz.
Usage
preview_app(quiz, launch_browser = TRUE)
Arguments
quiz |
an object of class 'quiz' to preview |
launch_browser |
launch in a web browser? |
Value
Called for side effect
Functions
-
preview_app()
: Preview a quiz with full operability
Author(s)
Joseph Marlo
Examples
quiz <- create_quiz(
create_question(
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Select nulla.',
add_choice('auctor'),
add_choice('nulla', correct = TRUE)
),
create_question(
'Mauris congue aliquet dui, ut dapibus lorem porttitor sed. Select 600.',
add_choice('600', correct = TRUE),
add_choice('800')
)
)
preview_app(quiz)
[Package shinyquiz version 0.0.1 Index]