Why R?
What is R Markdown?
How should we conduct statistical analyses?
R
is a completely free software package and language for statistical analysis and graphics.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 chunk_name}
x <- rnorm(1000)
length(x)
qplot(x, bins = 10,
fill = I("orange"),
color = I("black"))
```
## [1] 1000