Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gsimchoni/CastleOfR
A text-based adventure played in the R console, to test your skills in R
https://github.com/gsimchoni/CastleOfR
Last synced: 3 months ago
JSON representation
A text-based adventure played in the R console, to test your skills in R
- Host: GitHub
- URL: https://github.com/gsimchoni/CastleOfR
- Owner: gsimchoni
- Created: 2017-09-03T12:31:11.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-07T18:00:37.000Z (about 7 years ago)
- Last Synced: 2024-05-21T02:53:56.331Z (6 months ago)
- Language: R
- Homepage:
- Size: 153 KB
- Stars: 42
- Watchers: 3
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
README
---
output: github_document
---![](castleImage.png)
Welcome to the Castle of R!
Castle of R is a text-based adventure, based on the canonical 'An Introduction to R' book, by Venables, Smith and the R Core Team. The purpose of this game is to test your skills in base R.
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```Install:
```{r, eval = FALSE}
devtools::install_github("gsimchoni/CastleOfR")
```Load:
```{r, eval = FALSE}
library(CastleOfR)
```Start game:
```{r, eval = FALSE}
startGame()
```![](CastleOfR_startGame.png)
More information [here](http://giorasimchoni.com/2017/09/10/2017-09-10-you-re-in-a-room-the-castleofr-package/).