A quote:
Markdown is not LaTeX.
To compile me, run this in R:
library(knitr)
knit('001-minimal.Rmd')
See output here.
A paragraph here. A code chunk below (remember the three backticks):
1 + 1
## [1] 2
0.4 - 0.7 + 0.3 # what? it is not zero!
## [1] 5.551e-17
It is easy.
plot(1:10)
hist(rnorm(1000))
Yes I know the value of pi is 3.1416, and 2 times pi is 6.2832.
Sigh. You cannot live without math equations. OK, here we go: knitr::knit2html()
.
You can write code within other elements, e.g. a list
-
foo is good
strsplit("hello indented world", " ")[[1]]
## [1] "hello" "indented" "world"
-
bar is better
Or inside blockquotes:
Here is a quote, followed by a code chunk:
x = 1:10 rev(x^2)## [1] 100 81 64 49 36 25 16 9 4 1
Nothing fancy. You are ready to go. When you become picky, go to the knitr website.