Web Exercises

knitr::opts_chunk$set(echo = FALSE)
library(webexercises)
# Uncomment to change widget colours:
#style_widgets(incorrect = "goldenrod", correct = "purple")

This is a Web Exercise template created by the #PsyTeachR team at the University of Glasgow, based on ideas from Software Carpentry. This template shows how instructors can easily create interactive web documents that students can use in self-guided learning.

The {webexercises} package provides a number of functions that you use in inline R code or through code chunk options to create HTML widgets (text boxes, pull down menus, buttons that reveal hidden content). Examples are given below. Knit this file to HTML to see how it works.

NOTE: To use the widgets in the compiled HTML file, you need to have a JavaScript-enabled browser.

Fill-In-The-Blanks (fitb())

Create fill-in-the-blank questions using fitb(), providing the answer as the first argument.

You can also create these questions dynamically, using variables from your R session.

x <- sample(2:8, 1)

The blanks are case-sensitive; if you don't care about case, use the argument ignore_case = TRUE.

If you want to ignore differences in whitespace use, use the argument ignore_ws = TRUE (which is the default) and include spaces in your answer anywhere they could be acceptable.

You can set more than one possible correct answer by setting the answers as a vector.

You can use regular expressions to test answers against more complex rules.

Multiple Choice (mcq())

True or False (torf())

Longer MCQs (longmcq())

When your answers are very long, sometimes a drop-down select box gets formatted oddly. You can use longmcq() to deal with this. Since the answers are long, It's probably best to set up the options inside an R chunk with echo=FALSE.

What is a p-value?

opts_p <- c(
   "the probability that the null hypothesis is true",
   answer = "the probability of the observed, or more extreme, data, under the assumption that the null-hypothesis is true",
   "the probability of making an error in your conclusion"
)

r longmcq(opts_p)

What is true about a 95% confidence interval of the mean?

# use sample() to randomise the order
opts_ci <- sample(c(
  answer = "if you repeated the process many times, 95% of intervals calculated in this way contain the true mean",
  "there is a 95% probability that the true mean lies within this range",
  "95% of the data fall within this range"
))

r longmcq(opts_ci)

Checked sections

Create sections with the class webex-check to add a button that hides feedback until it is pressed. Add the class webex-box to draw a box around the section (or use your own styles).

::: {.webex-check .webex-box}

I am going to learn a lot: r torf(TRUE)

opts <- c(
   "the probability that the null hypothesis is true",
   answer = "the probability of the observed, or more extreme, data, under the assumption that the null-hypothesis is true",
   "the probability of making an error in your conclusion"
)

cat("What is a p-value?", longmcq(opts))

:::

Hidden solutions and hints

You can fence off a solution area that will be hidden behind a button using hide() before the solution and unhide() after, each as inline R code. Pass the text you want to appear on the button to the hide() function.

If the solution is an RMarkdown code chunk, instead of using hide() and unhide(), simply set the webex.hide chunk option to TRUE, or set it to the string you wish to display on the button.

Recreate the scatterplot below, using the built-in cars dataset.

with(cars, plot(speed, dist))

r hide("I need a hint")

See the documentation for plot() (?plot)

r unhide()

plot(cars$speed, cars$dist)


Try the webexercises package in your browser

Any scripts or data that you put into this service are public.

webexercises documentation built on May 31, 2023, 8:16 p.m.