Automatic generation of exams in Moodle XML format.
exams2moodle(file, n = 1L, nsamp = NULL, dir = ".",
name = NULL, quiet = TRUE, edir = NULL,
tdir = NULL, sdir = NULL, verbose = FALSE,
resolution = 100, width = 4, height = 4, svg = FALSE, encoding = "",
iname = TRUE, stitle = NULL,
testid = FALSE, zip = FALSE, num = NULL, mchoice = NULL,
schoice = mchoice, string = NULL, cloze = NULL,
points = NULL, rule = NULL, pluginfile = TRUE,
converter = NULL, …) make_question_moodle(name = NULL, solution = TRUE,
shuffle = FALSE, penalty = 0, answernumbering = "abc",
usecase = FALSE, cloze_mchoice_display = "MULTICHOICE",
truefalse = c("True", "False"), enumerate = TRUE, abstention = NULL,
eval = list(partial = TRUE, negative = FALSE, rule = "false2"),
essay = NULL)
character. A specification of a (list of) exercise files.
integer. The number of copies to be compiled from file
.
integer. The number(s) of exercise files sampled from each
list element of file
. Sampling without replacement is used
if possible. (Only if some element of nsamp
is larger than
the length of the corresponding element in file
, sampling
with replacement is used.)
character. The default is the current working directory.
character. A name prefix for resulting exercises and ZIP file.
logical. Should output be suppressed when calling
xweave
?
character specifying the path of the directory in which
the files in file
are stored (see also below).
character specifying a temporary directory, by default
this is chosen via tempdir
. Note that this
is cleaned up and potentially temporary files are deleted.
character specifying a directory for storing supplements, by
default this is chosen via tempdir
.
logical. Should information on progress of exam generation be reported?
numeric. Options for rendering PNG (or SVG)
graphics passed to xweave
.
logical. Should graphics be rendered in SVG or PNG (default)?
character, passed to xweave
.
logical. Should the exam name
be included in the path in the <category>
tag in the final XML file? This option may be useful when questions should be added to
certain already existing question banks, i.e. iname = TRUE
will include the exam
name
by $course$/ExamName/
.
character. For the questions specified in argument file
, additional section
titles may be set. The section titles will then be added to the <category>
tag in the final XML file (see also argument iname
), i.e. the section name
for each question will be written to $course$/ExamName/SectionName
. Note that section
names may also be provided in the \exsection{}
tag in the .Rnw
file of the
question. However, section names that are specified in stitle
will overwrite
\exsection{}
tags. stitle
may also include NA
, e.g.
stitle = c("Exercise 1", NA, "Exercise 3")
.
logical. Should an unique test id be added to the exam name
.
logical. Should the resulting XML file be zipped?
function or named list applied to numerical (i.e., type num
)
questions. If num
is a function, num
will be used
for generating the item body of the question, see function make_itembody_qti12()
.
If num
is a named list, these arguments will be passed to function
make_itembody_qti12()
.
function or named list applied to multiple choice,
single choice, string, and cloze questions (i.e., type mchoice
, schoice
,
string
, and cloze
), respectively. See argument num
for more details.
integer. How many points should be assigned to each exercise? Note that this
argument overules any exercise points that are provided within an "\expoints{}"
tag
in the .Rnw
file. The vector of points supplied is expanded to the number of exercises in
the exam.
character specifying which rule to use for negative partial credits. see function
exams_eval
. Note that the default using cloze exercises is rule = "none"
.
logical. Should supplements be included in the Moodle XML file via Moodle's
Pluginfile mechanism? This is the default but may not work with older versions of Moodle (<2.5).
If set to FALSE
supplements like graphics and data are included as data URIs.
logical. Should the question solution, if available, be added in the question XML?
For mchoice
and schoice
exercises, if set to TRUE
will
force Moodle to additionally shuffle the provided answer list.
numeric. Specifies the penalty tag for a question.
character. Specifies how choice questions should be numbered.
logical. Should string questions be case sensitive or not.
character. In cloze
type questions, the user may set the
visual appearance of choice questions in either a drop down menue (default)
"MULTICHOICE"
, vertical alignment "MULTICHOICE_V"
or horizontal
"MULTICHOICE_H"
.
character of length 2. For single choice answers in cloze
questions,
the user may specify the possible options shown.
logical. In cloze
questions, if set to TRUE
, the answerlist and
solutionlist will be enumerated.
character or logical. Should an explicit abstention option be added in single/multiple choice exercises? The character text specified is used for an extra button in Moodle which (when selected) always leads to zero points.
named list, specifies the settings for the evaluation policy, see function
exams_eval
.
logical. Should string
questions be rendered into Moodle shortanswer
or essay
questions? The default is to use shortanswer
unless either
essay=TRUE
or the exercise's metainformation is set to essay
.
arguments passed on to make_exercise_transform_html
.
The default for converter
is set to "ttm"
unless there are Rmd
exercises in file
where "pandoc"
is used.
exams2moodle
returns a list of exams as generated by xexams
.
make_question_moodle
returns a function that generates the XML code
for the question in Moodle's XML standard.
exams2moodle
produces an XML file that may be uploaded into Moodle. It proceeds by (1)
calling xweave
on each exercise, (2) reading the resulting LaTeX code, (3)
transforming the LaTeX code to HTML, and (4) embedding the HTML code in a XML file using the
Moodle standards for exams/quizzes.
For steps (1) and (2) the standard drivers in xexams
are used. In step (3), a suitable
transformation function is set up on the fly using make_exercise_transform_html
, see also
the details section in exams2html
.
For step (4), the function will cycle through all questions and exams to generate the final XML
file in Moodle standard. The structure of the resulting XML file is such that one category
will be set for the exam/quiz using the exam/quiz name
(or this category may be
suppressed (i.e., not included in the XML) by setting iname = FALSE
), followed by one
category/section for each question, while the replicates of each question will be included in the
corresponding category/section. Note that category/section names may also be provided in the
\exsection{}
tag in the .Rnw
files, or within argument stitle
in
exams2moodle
. This may be useful when questions should automatically be added to already
existing Moodle question banks. (See also the argument descriptions above.)
The XML code for each question is then generated using function make_question_moodle
.
Note that for each question type, either the arguments of make_question_moodle
may be set
within num
, mchoice
, schoice
, string
and cloze
in
exams2moodle
, by providing a named list of specifications that should be used, or for each
questiontype, a function that produces the question XML code may be provided to num
,
mchoice
, schoice
, string
and cloze
. E.g., to suppress the solution
for numeric questions one may set num = list(solution = FALSE)
.
When specifying cloze exercises, two approaches are possible: Either a answerlist
with
all questions is provided within the question
or, alternatively, the answer fields can
be placed anywhere in the question
text. For the latter, the strings ##ANSWER1##
,
##ANSWER2##
, etc., have to be used, see the exercises "boxhist2.Rnw"
and
"fourfold2.Rnw"
for illustration and Appendix C in Zeileis et al. (2014) for further
details.
To fix the width of numeric answer fields withing cloze exercises (in order not to convey any
clues about the length of the correct solution), the \exextra[numwidth]
metainformation
command can be used in the .Rnw
exercise. For example, it can be set to
\exextra[numwidth,logical]{TRUE}
, \exextra[numwidth,numeric]{5}
, or
\exextra[numwidth,character]{100.0}
.
In order to generate free text questions in moodle one may
specify extra parameters
via \exextra
. Currently the following options are supported:
essay
: logical. Enables the essay function.
format
: character. Type of text field (one of: plain
, editor
, editorfilepicker monospaced noinline)
required
: logical. Whether an answer is required.
attachments
: numeric. How many attachments can be uploaded.
attachmentsrequired
: numeric. The number of required attachments.
Dougiamas M, et al. (2015). Moodle, Version 2.8. http://moodle.org/.
MoodleDocs (2015). Moodle XML Format. http://docs.moodle.org/en/Moodle_XML
Zeileis A, Umlauf N, Leisch F (2014). Flexible Generation of E-Learning Exams in R: Moodle Quizzes, OLAT Assessments, and Beyond. Journal of Statistical Software, 58(1), 1--36. http://www.jstatsoft.org/v58/i01/.
# NOT RUN {
## load package and enforce par(ask = FALSE)
library("exams")
options(device.ask.default = FALSE)
## define an exams (= list of exercises)
myexam <- list(
"boxplots",
c("tstat", "ttest", "confint"),
c("regression", "anova"),
c("scatterplot", "boxhist"),
"relfreq"
)
## output directory
mydir <- tempdir()
## generate moodle quiz in temporary directory
## using a few customization options
exams2moodle(myexam, n = 3, dir = mydir,
num = list(solution = FALSE),
mchoice = list(shuffle = TRUE)
)
dir(mydir)
# }
Run the code above in your browser using DataLab