My knitr configuration

Put the code in the box at the top of your .Rmd file to use.

(No space here)```{r, message = FALSE, tidy = FALSE, echo = F}

## knitr configuration: http://yihui.name/knitr/options#chunk_options
opts_chunk$set(comment = "", error= TRUE, warning = FALSE, message = FALSE,
               tidy = FALSE, cache = F, echo = T,
               fig.width = 5, fig.height = 5)

## R configuration
options(width = 116, scipen = 5)

(No space here)```

knitr options explained

R options explained