knitr icon indicating copy to clipboard operation
knitr copied to clipboard

A general-purpose tool for dynamic report generation in R

Results 152 knitr issues
Sort by recently updated
recently updated
newest added

Hello, The current minimum R version of `knitr` is R (>= 3.3.0). However, I noticed that the `evaluate` package imported by `knitr` requires R ( >=4.0.0) as of its latest...

The option `autodep=TRUE` does not work since #2321 even with the simplest example as follows: ```` ```{r, setup} knitr::opts_chunk$set(cache = TRUE) knitr::opts_chunk$set(autodep = TRUE) ``` ```{r, src} x = 1...