The knitr package (Xie 2016) is an alternative tool to Sweave based on a different design with more features. This document is not an introduction, but only serves as a placeholder to guide you to the real manuals, which are available on the package website https://yihui.name/knitr/1, and remember to read the help pages of functions in this package. There is a book (Xie 2015) for this package, but it may not be useful to those who prefer digging out information on the web.
Anyway, here is a code chunk that shows you can compile vignettes with knitr as well using R 3.0.x, which supports non-Sweave vignettes:
## [1] -0.47895 1.64563 1.08664 -0.48803 0.44205 -1.03148 0.07407
## [8] 0.11753 2.02114 1.22088 0.33964 1.68759 -0.34722 0.84130
## [15] 0.28156 -0.22972 1.93980 0.06516 -1.21992 -0.79984
Estimate | Std. Error | t value | Pr(>|t|) | |
---|---|---|---|---|
(Intercept) | -17.579 | 6.7584 | -2.601 | 0.0123 |
speed | 3.932 | 0.4155 | 9.464 | 0.0000 |
The fitted regression equation is \(Y=-17.5791+3.9324x\).
A scatterplot with a regression line.
Xie, Yihui. 2015. Dynamic Documents with R and Knitr. 2nd ed. Boca Raton, Florida: Chapman; Hall/CRC. http://yihui.name/knitr/.
———. 2016. Knitr: A General-Purpose Package for Dynamic Report Generation in R. http://yihui.name/knitr/.
e.g. the main manual and the graphics manual↩