The knitr package 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.org/knitr/ (e.g. the main manual and the graphics manual ), and remember to read the help pages of functions in this package. There is a book "Dynamic Docuemnts with R and knitr" for this package, too.

Below are code chunk examples:

options(digits = 4)
rnorm(20)
fit = lm(dist ~ speed, data = cars)
b = coef(fit)
summary(fit)$coefficients

The fitted regression equation is $Y={r} b[1]+{r} b[2]x$.

par(mar=c(4, 4, 1, .1))
plot(cars, pch = 20)
abline(fit, col = 'red')

References

print(citation('knitr'), style = 'html')


yihui/knitr documentation built on Nov. 14, 2024, 3:14 p.m.