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

This comes from https://github.com/rstudio/bookdown/issues/866#issuecomment-827028932 Currently this is only supported for HTML https://github.com/yihui/knitr/blob/4dfd383aaea5975dd601b37d9fb44dada327e4b0/R/hooks-md.R#L57

next

Adds additional SQL "update" keywords (`ALTER`, `GRANT`, `MERGE`, etc) to `is_sql_update_query` (which is a package internal function and not exported) and allow users to force a query contained in a...

next

`call_block` does all the extraction of the parameters necessary, but executes the block. Regarding our email of getting a `data.frame` of parameters/hash/etc, I think that is what we'd need. I...

Referencing my comment in #1853 (itself a reference to #1852 ), in my very limited experience, I think it makes more sense to not immediately force a screenshot check on...

Regards #1811 - Adds `html_to_r()` to easily extract R code from `.html` files generated through R Markdown - Adds tests for `html_to_r()`

These examples are the same as in \#1801. With this PR an error is thrown when delimiters are not as expected. An innocuous example: ``` r txt1 * no starting...

A proposed solution to #1773: A test with Python is: (spinpythontest.py) ``` # Using python directly python

Knitr generates multiple figures in one line when a chunk generates multiple figures continuously. For example, ```` ```{r echo=FALSE, fig.cap = c('cap1', 'cap2')} plot(1) plot(2) ``` ```` becomes something like...

This pull request adds a new pattern for defining R code chunks within a LaTeX environment, replacing the = ... @ syntax. ``` \begin{Rcode}[options] ## code goes here \end{Rcode} ```...

I ran into a situation where I wanted to be able to turn on or off different pieces of commentary in the markdown throughout a document. For example, I would...