knitr is an R package for dynamic report generation based on the concept of literate programming.

learn more… | top users | synonyms

1
vote
1answer
22 views

Lyx cannot find knitr module

I am migrating/branching from sweave to knitr and can run @yihui's minimal example in Rstudio but am having trouble making it run with Lyx (2.06). I get the message The module knitr has been requested ...
2
votes
1answer
48 views

highlight every other row knitr+Rmd

How can I highlight every other row of a table in knitr? The output for the following .Rmd is an all white table rather than every other row grey: ```{r setup, include=FALSE} ...
2
votes
1answer
35 views

knitr strange out of control behavior with figures

I get strange behavior with figures. In some chunks knitr generates two figures from a single plot function, and the figures generated from 'chunkname' are named 'chunkname1.pdf' and 'chunkname2.pdf'. ...
2
votes
1answer
52 views

have knitr output figures in different formats

Let's say I have a long report that produces a lot of figures which knitr makes as pdfs and it works really well with LaTeX. At the end of the project, my co-authors would like to have also raster ...
-1
votes
2answers
73 views

Figure position in markdown when converting to PDF with knitr and pandoc

I'm trying to control the position of a plot when converting to PDF using knitr and pandoc. My .Rmd file looks this: # My report Some text some text some text some text some text some text some text ...
0
votes
1answer
14 views

Formatting of inline output: how to enforce format with format() or sprintf()

[crossposted from http://yihui.name/knitr/demo/sweave/] I understand and appreciate knitr's policy to format large numbers in scientific notation. However, I have encountered that this happens even ...
5
votes
1answer
96 views

R, knitr, xtable, alternating row colors

I'm trying to produce a table with xtable in R using knitr with alternating row colors. I can print a table in the PDF output but can't quite figure out the add.to.row command in the xtable manual ...
2
votes
0answers
31 views

Can I get a list of the source files being knitted, from within knitr?

Let's say I have main.Rmd: Mainfile ================ ```{r child="child1.Rmd"} ``` ```{r child="child2.Rmd"} ``` ```{r} print("These documents were knitted:") Something_goes_here() ``` What can ...
1
vote
1answer
39 views

How do I set pandoc latex template options with knitr's pandoc() function using an embedded pandoc config?

Is it possible to use knitr's pandoc() function with an embedded pandoc config in a markdown file to change the default pandoc latex template options? For example, if I use the following embedded ...
9
votes
0answers
104 views

knitr markdown highlighting in Emacs?

Is there any modification of an existing tool or new tool that will syntax-highlight (colour) blocks of R code in a knitr markdown document when opened in Emacs? The knitr chunks I am looking at are ...
5
votes
1answer
55 views

Package for formatting numeric values in reproducible research

Is there a standard way of converting numeric values to character with a particular type of formatting applied. I'm thinking of something like: formatR(32390,"dollars") # returns "$32,390" ...
4
votes
1answer
85 views

Test statistic (e.g. chisquare test) inside latex table using the tables-package in R/Knitr/Rstudio

I would like to use the tabular()-function from the tables-package to do a cross-tabulation of two variables (e.g. v1 and v2), and present the p-value of the chisq-test in the table. It is easy to get ...
4
votes
1answer
83 views

Automatically adjust latex table width to fit pdf using knitr and Rstudio

Using Rstudio and knitr to produce latex-tables in pdf, how do i make wide tables fit the page? I'm basically looking for at way to shrink the tables. With figures, it is really easy in Knitr using ...
2
votes
1answer
72 views

Converting Markdown to HTML5 slides via Pandoc through knitr in R

Since version 1.2 knitr has a new function pandoc to convert markdown document to other formats via pandoc directly in R (See here). For example library(knitr) pandoc('foo.md', format='html') # HTML ...
2
votes
1answer
54 views

knitr mp4 movie embedding does not work on Windows XP

I knit a Rmd file (to html) with a chunk producing a mp4 movie : ```{r clock, fig.width=7, fig.height=6, fig.show='animate'} par(mar = rep(3, 4)) for (i in seq(pi/2, -4/3 * pi, length = 12)) { ...
1
vote
2answers
36 views

How to use fig.show=animate in knitr without administrator privileges

I use Windows without administrator privileges hence I cannot set a path in the Windows PATH variable. The ffmpeg.exe file is in my "U:/ProgramFiles/ImageMagick-6.8.5-5/" folder. I have found how to ...
1
vote
0answers
21 views

Code folding in external files with knitr and RStudio

I can find no way to insert syntactically acceptable RStudio style folds into an external R code file that is set up for use from a knitr document. Or am I missing something. There are several ways ...
4
votes
1answer
83 views

Making knitr code blocks more cleanly cut-and-pastable

I would like to use knitr to produce pdf documents from which example code can be cleanly cut and pasted, but don't seem to be able to. An example of the problems I run into: The knitr manual pdf ...
0
votes
1answer
46 views

Expressions in markdown using knitr

I'm trying to use an inline expression in a .Rmd markdown file. I'm converting the .Rmd file to a PDF using Pandoc. The contents of my file is like this: Report ...
2
votes
1answer
60 views

reference knitr chunk in R markdown

I'm using knitr to embed R code within a markdown (.Rmd) file. I'm converting the file to a PDF file with Pandoc. The contents of my .Rmd file looks like this: Report ...
5
votes
0answers
53 views

knitr - exclude chunks from `purl(…)`?

When I purl/tangle a document to extract the R chunks into a script, is there any way to: exclude an arbitrary chunk (by name say)? if not, exclude a chunk if eval=F (or perhaps I can define a chunk ...
2
votes
1answer
50 views

Pandoc insert appendix after bibliography

I'm using the knitr package and pandoc in R to convert a .Rmd file to a PDF. Pandoc is linked to a .bib file and automatically inserts the bibliography at the end of the PDF The entries in my .bib ...
2
votes
1answer
41 views

Reduce cell width and font size of table using pandoc.table()

I'm using knitr and pander to make a table in a markdown file. I'm converting the markdown file to a PDF using Pandoc from within R. This code: library(knitr) ```{r myTable, echo=FALSE, ...
2
votes
1answer
55 views

LaTeX and knitr - Error inserting R Code

I have a document in the following structure. \documentclass[11pt]{article} \begin{document} \title{Something} \author{Andreas} \date{May 8th, 2013} \maketitle \section{Introduction} ...
1
vote
0answers
34 views

Escaping (c) in Rmd (R markdown) [duplicate]

I want to use (c) in an .Rmd file and it renders as a copyright symbol after knitting. How can I make it render as just (c) not ©?
0
votes
1answer
47 views

create function to alter PDF margin width in PDF files using Pandoc

I'm converting a markdown document to a PDF using Pandoc from within R. The default margins of PDFs outputted by Pandoc are too large. In this post: Set margin size when converting from Markdown to ...
3
votes
1answer
50 views

Knitr inline chunk options (no evaluation) or just render highlighted code

I cannot find information on whether it is possible to specify options for inline chunks in knitr. I've just tried specifying them, as in the regular chunk, but this gives an error. What I need is ...
0
votes
1answer
23 views

Are knitr subcaptions only for Latex?

I am using RStudio/knitr/markdown/pandoc/docx in Windows 7. I am having trouble getting captions on my plots when I print two of them side by side. In the following example, I get no caption in my ...
2
votes
1answer
68 views

Why is 'et al' appearing in markdown bibliography?

I'm trying to make a bibliography in markdown. To build the bibliography, I'm using the knitr package and pandoc in R to convert a .Rmd file to a PDF. The entries in my .bib file look like these, ...
1
vote
1answer
43 views

Highlight R syntax using knitr and Package Highlight

I try to highlight my R code using knit and Highlight pachages with Rstudio, but i have errors when kniting; There's my code : opts_chunk$set(fig.width=7, fig.height=5) ...
0
votes
1answer
84 views

ggplot2 plot fill page in landscape (pdf)

I'm trying to render a plot to a PDF using the following approach: pdf('~/Desktop/test.pdf', bg = "white", paper="USr") p <- ggplot(df, aes(something)) + geom_bar(); print(p) # I'm actually ...
2
votes
1answer
47 views

specifying output path for knit2html

I'm having trouble specifying an output path for the html generated by knit2html or its dependent functions. I would like to specify 'outfile' in the the call to knit2html(), but I get the error, ...
0
votes
0answers
29 views

MathJax scripts not being generated by knitr::spin

I'm generating an html report from a knitr::spin marked up document 1) It works doing the following > spin("document.R") Process the resulting .md file in Rstudio by clicking the "Preview ...
1
vote
0answers
51 views

how can I display knitR markdown in a pandoc rendered pdf

I wish to show the knitR code in the final PDF together with its execution result. I did not find yet a working way to fence "tripple-backticks"{r}..."tripple-backticks" blocks in the knitR code and ...
0
votes
0answers
25 views

Knitr - R studio : how to change the path where the pdf generated from .Rnw is stored

I am trying to figure out how to change the location where my pdf generated from a .Rnw file in Rstudio can be changed. As default it saves the pdf in the same directory as the .Rnw file but I want to ...
2
votes
0answers
30 views

allowframebreaks in beamer shading box disappear using knitr

I have the following code \documentclass{beamer} \begin{document} <<setup, include=FALSE>>= opts_chunk$set(out.lines = 4) opts_chunk$set(size = 'footnotesize') options(width=60) ...
0
votes
2answers
68 views

To have R chunk in line with text using knitr

How to have R code (R chunk) inline with my text? Example: Please install the package by using install.packages("ISwR") whereby, install.packages("ISwR") is automatically highlighted as R chunk ...
16
votes
0answers
179 views

knitr/Rmd: page break after n lines/n distance

Let me caveat by saying that this may be better suited as an html/css question but (a) I'm not too familiar with those techniques and (b) I wanted to keep it all in the family (R family) if possible. ...
3
votes
1answer
279 views

Brew and knit one PDF report split by variable with special characters (å æ ø) - encoding issue

I try to produce one PDF report split on sections based on a grouping variable, using brew and knitr. My grouping variable may contain special characters (umlauts), such as å æ ø. Umlauts in the ...
3
votes
1answer
94 views

Is there an option to control output page orientation (using knitr->pander->pandoc->docx)

I am playing with Tal's intro to producing word tables with as little overhead as possible in real world situations. (Please see for reproducible examples there - Thanks, Tal!) In real application, ...
3
votes
0answers
50 views

Using Greek letters in LaTeX tables [migrated]

I have the following Rnw document which I intend should produce a small table with "a b c" and "α β γ". At the moment, the encoding seems to be causing problems. The funny thing is that the output in ...
2
votes
1answer
26 views

How can I manually add a line break in the title in a knitr RSweave file?

Here's what I have: \documentclass{article} \begin{document} \title{This is the document title} \maketitle \end{document} I'd like something like this: \documentclass{article} ...
1
vote
0answers
40 views

Cannot run knitr on Lyx for MacBook

I am using the last version on LYX 2.0.5.1 and RStudio 0.97.318. I have installed knitr in R, my /usr/bin/Rscript is in PATH prefix in LYX, but I still fail to run even example files knitr.lyx. The ...
2
votes
1answer
54 views

Knitr: survplots in a loop are not produced when following another survplot

Below is a minimal example: \documentclass{article} \begin{document} <<data, results='hide', echo=FALSE, include=FALSE>>= library(rms) fake.survival.data <- Surv(1:30, rep(1, 30)) ...
1
vote
1answer
40 views

Adding pspline term to coxph model changes summary table in R

I'm trying to use knitr/xtable to produce tables from coxph() objects in a report. When I don't include a pspline term in the model everything works as expected. In a single chunk: <<results ...
1
vote
1answer
79 views

knitr figure produced twice (with R 3.0.0)

I have an Rnw file, which worked fine before upgrading to R 3.0.0 (and knitr 1.2). I found a similar problem described in knitr problem after update to R 3.0.0 I followed the answer, to update to ...
2
votes
1answer
58 views

knitr - set chunk options *outside* document?

I'm trying to set a global chunk option outside my call to knit like so: opts_chunks$set(dev='pdf') knit(input) However, it isn't working, as knit seems to use a fresh set of opts_chunks within ...
0
votes
1answer
51 views

Include pre-defined variable using inline code with knitr

How does one include a variable using inline expressions with knitr. For example, this works as expected: A random number from the normal distribution `r rnorm(1)`. But if you want to print a ...
1
vote
2answers
51 views

In R and knitr: Can I supress the message of readOGR?

I'm building small report using R & knitr, sending the output to pdf. I'm using several shape files in my analysis and whenever I use readOGR function of rgdal package I get information on what ...
1
vote
1answer
160 views

Apply xtable() to a list of tables and a create pdf using knitr in R-studio

I want to convert a list of tables to Latex using xtable() and create a pdf using Knitr in R-studio. I have tried to use llply() on the list but it does not work. Here is a list of tables: ...

1 2 3 4 5 7