List quiz submissions
Usage
list_submissions(
quiz_id,
course_id = Sys.getenv("CANVASQUIZ_COURSE_ID"),
url = Sys.getenv("CANVASQUIZ_URL"),
token = Sys.getenv("CANVASQUIZ_TOKEN"),
n = count_submissions(quiz_id, course_id, url, token),
tz = Sys.timezone()
)Arguments
- quiz_id
The ID of the quiz to retrieve statistics for.
- course_id
The course id. Defaults to the value of the
CANVASQUIZ_COURSE_IDenvironment variable.- url
The canvas url. Defaults to the value of the
CANVASQUIZ_URLenvironment variable.- token
The canvas token. Defaults to the value of the
CANVASQUIZ_TOKENenvironment variable.- n
The maximum number of quiz submissions to retrieve.
- tz
The timezone to use for the started_at and finished_at columns. Defaults to the system timezone.
See also
Other submissions:
list_attempted_questions(),
submission_info(),
submission_overview(),
submission_questions()