Overview
The learnr package is designed to be used with a wide variety of R Markdown formats. A tutorial is simply a directory containing an R Markdown document which:
Loads the learnr package.
Includes one or more interactive components (exercises, quiz questions, etc.).
Uses the
runtime: shiny_prerendered
directive in the YAML header.Uses a format which inherits from the
html_document_base
format and is marked asboostrap_compatible
(this is a parameter ofhtml_document_base
which indicates that it’s safe to inject Booststrap CSS into the document).
This means you can use learnr with the html_document
,
ioslides_presentation
,
and slidy_presentation
formats as well as many others.
We’ve shown plenty of examples of the default format, here’s an
example of embedding a tutorial within a
slidy_presentation
:
You can run a live version of this example with:
learnr::run_tutorial("slidy", package = "learnr")
Tutorial Format
The learnr package includes a
learnr::tutorial
R Markdown format which which provides
some default layout and behavior (including progress tracking) which
you’ll likely want to use in many of your tutorials.
The format also includes features for progressively revealing sections and allowing users to optionally skip exercises they are having trouble with (both of these features are described below).
You can create a new learnr::tutorial
document from a
template via the New R Markdown dialog in RStudio:
The benefits of using the learnr::tutorial
format
include:
More appropriate defaults are provided for various things including figure sizes and data frame printing.
A floating table of contents for easy navigation between sections is provided by default.
Visual adornments are added to the table of contents indicating which parts of the tutorial have been completed.
A “Start Over” button is added to the table of contents region to allow users to clear previous work within the tutorial.
Here’s what a learnr::tutorial
document looks like by
default:
Custom Formats
The learnr package exposes a JavaScript API which
can be used to create new R Markdown formats that include progress
tracking similar to that which is provided by the
learnr::tutorial
format.
The implementation of the learnr::tutorial
format is
extremely straightforward and provides a template for creating
additional new formats via the API:
The tutorial-format.R file includes the definition of the custom R Markdown format function.
The tutorial-format.js file demonstrates the use of the tutor JavaScript API to add progress tracking features to the default R Markdown floating table of contents.
The inst/rmarkdown/templates/tutorial directory includes all the files and configuration required to make the format available as a custom R Markdown template within the RStudio IDE.