Adding rmd example

This commit is contained in:
Arfon Smith
2013-12-15 19:52:15 -08:00
parent 8c9ba2214a
commit 567408bc5e
2 changed files with 35 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
# An example RMarkdown
Some text.
## A graphic in R
```{r}
plot(1:10)
hist(rnorm(10000))
```