Last active
February 18, 2017 21:10
-
-
Save ismayc/5e8c046a7e7bdaafbaba2db2be8eae94 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "Example Document" | |
author: "Your name here" | |
output: | |
bookdown::gitbook | |
--- | |
# Chap 1 | |
## Sec 1 | |
```{r, include=FALSE} | |
tutorial::go_interactive(greedy=FALSE) | |
``` | |
By default, `tutorial` will convert all R chunks. | |
```{r tut=TRUE} | |
a <- 2 | |
b <- 3 | |
a + b | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment