Giter VIP home page Giter VIP logo

examiner's Introduction

Examiner

An lightweight, flexible R package for generating multiple choice exams.

This package is still alpha. It came out of code I used to write multiple-choice exams for a course I was teaching. It could change at any time, but I thought it may be useful to others, so I packaged it and put it here.

Usage

Questions are written and stored in a yaml file,

---
pretext: |
  Who would cross the Bridge of Death must answer me these 
  questions three, 'ere the other side he see.
posttext: "Arrrrrrrrrrrrrgh!"
problems:
  - text: What is your name?
    correct: 2
    answers:
      - Sir Launcelot of Camelot
      - Arthur, King of the Britons
      - Sir Robin of Camelot
      - Sir Bedevere
      - Sir Galahad of Camelot
  - text: What is your quest?
    correct: 1
    answers:
      - To seek the Holy Grail
      - To kill ferocious bunnies
      - To invent silly walks
      - To find the meaning of life
  - text: What is the airspeed of an unladen swallow?
    correct: 5
    answers:
      - 25 mph
      - 20 mph
      - 30 mph
      - 40 mph
      - "African or European?"

Problems can then be loaded and formatted into LaTeX code. This is intended to be used with knitr or Sweave.

library("examiner")
Loading required package: methods
problems <- problemset_from_yaml(system.file("yaml/questions.yaml", package = "examiner"))
cat(format(problems))
\begin{problemset}
\begin{problemsetpretext}
Who would cross the Bridge of Death must answer me these 
questions three, 'ere the other side he see.

\end{problemsetpretext}
\begin{problems}
\noindent \begin{minipage}{\textwidth}
\noindent
\begin{problem}
\begin{problemtext}
What is your name?
\end{problemtext}
\begin{answers}
\item   Sir Launcelot of Camelot 
\item   Arthur, King of the Britons 
\item   Sir Robin of Camelot 
\item   Sir Bedevere 
\item   Sir Galahad of Camelot 
\end{answers}
\end{problem}
\end{minipage}
\noindent \begin{minipage}{\textwidth}
\noindent
\begin{problem}
\begin{problemtext}
What is your quest?
\end{problemtext}
\begin{answers}
\item   To seek the Holy Grail 
\item   To kill ferocious bunnies 
\item   To invent silly walks 
\item   To find the meaning of life 
\end{answers}
\end{problem}
\end{minipage}
\noindent \begin{minipage}{\textwidth}
\noindent
\begin{problem}
\begin{problemtext}
What is the airspeed of an unladen swallow?
\end{problemtext}
\begin{answers}
\item   25 mph 
\item   20 mph 
\item   30 mph 
\item   40 mph 
\item   African or European? 
\end{answers}
\end{problem}
\end{minipage}
\end{problems}
\begin{problemsetposttext}
Arrrrrrrrrrrrrgh!
\end{problemsetposttext}
\end{problemset}

There are options to shuffle problems, and answers, and to show the solutions. The appearance can be customized by redefining the LaTeX environments. See the package vignettes for more examples.

examiner uses templates to format the questions, which allows flexibility in the formatting. For example, to produce markdown,

tpl_problem <- str_c("{{{text}}}", "\n", "{{{answers}}}", sep = "\n")

tpl_answerlist <- str_c("{{#answers}}", "1. {{{text}}}", "{{/answers}}", sep = "\n")

tpl_problemset <- str_c("{{{pretext}}}\n", "{{#problems}}", "{{{.}}}", "{{/problems}}", 
    "\n{{{posttext}}}", sep = "\n")

tpl_problemblock <- str_c("{{{pretext}}}\n", "{{#problems}}", "{{{.}}}", "{{/problems}}", 
    "{{{posttext}}}\n", sep = "\n")

problems <- problemset_from_yaml(system.file("yaml/questions.yaml", package = "examiner"))
cat(format(problems, tpl_answerlist = tpl_answerlist, tpl_problemset = tpl_problemset, 
    tpl_problemblock = tpl_problemblock, tpl_problem = tpl_problem))

Who would cross the Bridge of Death must answer me these questions three, 'ere the other side he see.

What is your name?

  1. Sir Launcelot of Camelot
  2. Arthur, King of the Britons
  3. Sir Robin of Camelot
  4. Sir Bedevere
  5. Sir Galahad of Camelot

What is your quest?

  1. To seek the Holy Grail
  2. To kill ferocious bunnies
  3. To invent silly walks
  4. To find the meaning of life

What is the airspeed of an unladen swallow?

  1. 25 mph
  2. 20 mph
  3. 30 mph
  4. 40 mph
  5. African or European?

Arrrrrrrrrrrrrgh!

Comparison to Alternatives

The package exams is a more mature and full featured package that uses R to generate exams. exams handles more question types and also allows output into HTML. examiner is lighter weight, more flexible due to its use of templates, and uses some newer features like knitr. In general, I'd probably recommend using exams for now; examiner is something of a personal project that has been extended into a package. However, in the future examiner may be developed into a more full featured exam generation package.

There are several exam packages in LaTeX, some of which allow for randomization and shuffling of questions; see the CTAN topic exams. For whatever reason, I found them more complicated to deal with than using another language and templates to generate the output. It was easier to customize and extend using R, than writing LaTeX macros. Most importantly, a templating approach allows for non-LaTeX output.

examiner's People

Contributors

jrnold avatar

Stargazers

Brenton Kenkel avatar

Watchers

 avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.