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
- Host: GitHub
- URL: https://github.com/psyteachr/webexercises
- Owner: PsyTeachR
- License: other
- Created: 2021-09-09T07:22:44.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-20T19:59:49.000Z (over 2 years ago)
- Last Synced: 2025-04-10T04:14:24.285Z (about 1 year ago)
- Topics: interactive, r, teaching, website
- Language: HTML
- Homepage: https://psyteachr.github.io/webexercises/
- Size: 1.6 MB
- Stars: 32
- Watchers: 6
- Forks: 15
- Open Issues: 10
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
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")
```

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