forked from gsimchoni/CastleOfR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
38 lines (28 loc) · 784 Bytes
/
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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
![](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/).