“Reproducible research is the idea that data analyses, and more generally, scientific claims, are published with their data and software code so that others may verify the findings and build upon them.”
txt file # Header 1
## Header 2
Normal paragraphs of text go here.
**I'm bold**
[links!](http://rstudio.com)
* Unordered
* Lists
And Tables
---- -------
Like This
```{r}
x <- rnorm(1000)
length(x)
qplot(x, bins = 10,
fill = I("orange"),
color = I("black"))
```
## [1] 1000
$Y = mX + b$(Following along with blog here)