An open API service indexing awesome lists of open source software.

https://github.com/psyteachr/webexercises

RMarkdown tools for creating self-guided web exercises
https://github.com/psyteachr/webexercises

interactive r teaching website

Last synced: about 1 year ago
JSON representation

RMarkdown tools for creating self-guided web exercises

Awesome Lists containing this project

README

          

---
output: github_document
---

```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/",
out.width = "100%"
)
library(webexercises)
```

# The `{webexercises}` package

The goal of `{webexercises}` is to enable instructors to easily create interactive web pages that students can use in self-guided learning. Although `{webexercises}` has fewer features than RStudio's [learnr](https://rstudio.github.io/learnr/) package, it is more lightweight: whereas `{learnr}` tutorials must be either hosted on a shiny server or run locally, `{webexercises}` creates standalone HTML files that require only a JavaScript-enabled browser. It is also extremely simple to use. See the [webexercises website](https://psyteachr.github.io/webexercises/) for demos and instructions.

## Installation

You can install `{webexercises}` from CRAN using:

```{r install-cran, eval=FALSE}
install.packages("webexercises")
```

You can install the development version from [GitHub](https://github.com/PsyTeachR/webexercises) with:

```{r install-webexercises, eval=FALSE}
devtools::install_github("psyteachr/webexercises")
```

Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.