-
Notifications
You must be signed in to change notification settings - Fork 11
/
README.Rmd
40 lines (26 loc) · 1.66 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/",
out.width = "100%"
)
library(webexercises)
```
# The `{webexercises}` package
<img src="man/figures/logo.png" style="float:right; max-width:280px; width: 25%;" />
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")
```
<a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.