Web Exercises

knitr::opts_chunk$set(echo = TRUE)
if (!requireNamespace("webex")) {
  stop("You must have the 'webex' package installed to knit HTML from this template.\n   devtools::install_github(\"psyteachr/webex\")")
} else {
  library("webex")
}

This is a Web Exercise template created by the psychology teaching 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 webex package provides a number of functions that you use in inline R code 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.

Total Correct (total_correct())

The function total_correct() displays a running total of correct responses. Change the elem argument to display in a different style (e.g., h2 or h3 for header styles). If you're comfortable with css styles or classes, you can add them with the args argument.

r total_correct(elem = "h3", args = "style='color:#003366;'")

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())

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.

Example problem

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 webex package in your browser

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

webex documentation built on June 10, 2021, 9:09 a.m.