I always use Sweave to create documents with R because I like pdf files. I have been putting off learning markdown, even though Jenny always says:
Markdown is not that hard to learn!
I can think of a few reasons why markdown is better than sweave:
Let's try some r code.
a <- 1
b <- 2
(f <- a/b)
## [1] 0.5
I can also plot stuff.
plot(a, b)
I don't like all of the files created in my working directory when I knit2html. Can I get rid of these somehow?