Skip to content

Instantly share code, notes, and snippets.

@stephenturner
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stephenturner/47bce5b5baa64a53481e to your computer and use it in GitHub Desktop.
Save stephenturner/47bce5b5baa64a53481e to your computer and use it in GitHub Desktop.

Untitled

Stephen Turner
September 4, 2014

This is markdown text.

# This is R code that is echo'd and evaluated
p <- 5
p + 37
## [1] 42

More markdown

---
title: "Untitled"
author: "Stephen Turner"
date: "September 4, 2014"
output:
html_document:
keep_md: true
---
This is markdown text.
<!-- This is commented markdown text, which doesn't show up in output -->
```{r}
# This is R code that is echo'd and evaluated
p <- 5
p + 37
```
More markdown
```{r, echo=FALSE, results='hide'}
# This is r code that's evaluated, but neither commands or results are shown
p + 42 - 5
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment