Knitr tutorial

From CommunityData
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

knitr is "an engine for dynamic report generation with R. It is a package in the statistical programming language R that enables integration of R code into LaTeX, LyX, HTML, Markdown, AsciiDoc, and reStructuredText documents." This page will focus on integrating knitr into LaTeX documents.

Setup

If you are install it locally you need to run R and then install the package within R:

 install.packages("knitr")

If you are running it from within Overleaf, you just need to make sure that your file is named so that it ends with .rtex

Compiling Knitr

On Overleaf, you just hit compile, although it can be tricky to debug and see errors unless you dig into the logs.

On your computer, you can use the Rscript command to just run it from R:

 Rscript -e "library(knitr); knit('main.tex')"

If you use RStudio:

  • Name your file as ".Rnw"
  • Put % !Rnw weave = knitr as the first line of your file

Using Knitr in RWeb/Sweave mode

There are only really two tricks.

Using Knitr in an inline expression:

  \Sexpr{}
Using Knitr in a block:
 <<blockname>>=
 '''R CODE HERE'''
 @

After this, it's all about options. The most important is results and the default is "results="markup" but the other critical one is "results="asis".

Nice to have

I usually use the following preamble:

<syntaxhighlight lang="r">

<<init, echo=FALSE>>=
knit_hooks$set(document = function(x) {
  sub('\\usepackage[]{color}',
'\\usepackage[usenames,dvipsnames]{color}', x, fixed = TRUE)
})
opts_chunk$set(fig.path="figures/knitr-")

source("resources/preamble.R")
@

</syntax>