Sweave is a system for combining S (or R) code with LaTeX in a single document.

learn more… | top users | synonyms

37
votes
5answers
3k views

General guide for creating publication quality tables using R, Sweave, and LaTeX

There are a range of tools available for creating publication quality tables using R, Sweave, and LaTeX. In particular, there are helper functions like latex in the Hmisc package, and xtable in the ...
22
votes
2answers
1k views

What is the knitr equivalent of `R CMD Sweave myfile.rnw`?

What is the command-line knitr equivalent of R CMD Sweave myfile.rnw?
19
votes
8answers
2k views

Sweave for python

I've recently started using Sweave* for creating reports of analyses run with R, and am now looking to do the same with my python scripts. I've found references to embedding python in Sweave docs, ...
18
votes
11answers
5k views

More efficient R / Sweave / TeXShop work-flow?

I've now got everything to work properly on my Mac OS X 10.6 machine so that I can create decent looking LaTeX documents with Sweave that include snippets of R code, output, and LaTeX formatting ...
18
votes
6answers
2k views

Recommendations for developing Sweave documents

I'm looking to streamline my Sweave document creation, and I'd like to hear about people's current setups. I feel like the holy grail goes something like this: Editing Rnw code on one half of the ...
16
votes
4answers
1k views

Using the Tufte-Latex class in Sweave

I must confess that today is my first day using either Sweave or LaTeX. Yes, it's true. I realized today that my "before 40" bucket list was not going to resolve itself in the absence of my ...
14
votes
3answers
315 views

How can Sweave users collaborate with Word users? [closed]

I'd like to pitch the question discussed here to the SO community: what is the best way for Sweave users to collaborate with Word users? I'm trying to move my entire workflow to R and Sweave (or ...
14
votes
3answers
859 views

Writing big documents with Sweave. Is it possible to do as with LaTeX?

I am just discovering Sweave and R. I have seen some examples of Sweave documents and have also started to write one or two on my own. I am impressed by the ability of doing computations in R and ...
13
votes
11answers
2k views

How to capture R text+image output into one file (html, doc, pdf etc)?

The task is to create a file (word, rtf, pdf, html, or whatever) that will capture the output of R (e.g: not the code that created the output), into that format (including text and images). The way ...
13
votes
1answer
257 views

Exempt code chunks in an Sweave document from emacs spell check

In a Sweave document, code chunks in R are set off from the main text like so: Catz are well known for their fur & pur. <<echo = false>>= catz <- 1 + 2 @ I'd like to run ...
13
votes
1answer
858 views

two column beamer/sweave slide with grid graphic

I'm trying to make a presentation on ggplot2 graphics using beamer + sweave. Some slides should have two columns; the left one for the code, the right one for the resulting graphic. Here's what I ...
13
votes
1answer
634 views

R + Org-mode: how to avoid naming plot files?

When I use Sweave with R, I can avoid explicitly naming the plot files by simply enclosing the plot commands within a code-chunk like <<fig=TRUE>> ... @. The Sweave driver automatically ...
12
votes
1answer
883 views

R / Sweave formatting numbers with \Sexpr{} in scientific notation

I am just starting to write some documents with Sweave/R and I like the \sexpr{} command that lets one tow write numbers directly within text. If I have a number like mus=0.0002433121, well I can say ...
11
votes
3answers
167 views

Get Emacs to ignore contents of \Sexpr{} command in Sweave document to prevent incorrect $-based syntax highlighting

When editing an Sweave document in LaTeX (using the Noweb mode), Emacs knows to "ignore" code that is in <<>>= blocks. However, for interstitial \Sexpr{} blocks, this isn't the case. Given that ...
11
votes
3answers
1k views

sweave and ggplot2: no pdfs generated at all

i am trying create a sweave report that contains some graphics done with ggplot2. Though I am looking for some environment for the long run – I just use a simple .Rnw file here that only contains the ...
11
votes
1answer
606 views

Can Sweave produce many pdfs automatically?

I analyze measurements from many cities (hundreds), and need to create separate reports per city (in Adobe pdf-format). My process is like this: First RStudio to prepare the data to be shown, saved ...
11
votes
6answers
3k views

How can I include complicated R plots in a LaTeX document?

I'm having the problem with the following code snippet: \documentclass{article} \usepackage{graphicx} \begin{document} \includegraphics{myscatterplot.pdf} \end{document} Where "myscatterplot.pdf" ...
10
votes
7answers
3k views

Counts & Percentages in xTable, Sweave, R, cross tabulations

Edit: Building off of aL3xa's answer below, I've modified his syntax below. Not perfect, but getting closer. I still haven't found a way to make xtable accept \multicolumn{} arguments for columns or ...
10
votes
3answers
604 views

Proofreading the PDF of a book, thesis, or report derived from a large multi-file Sweave project

I'm a big fan of reproducible research. I often use make, Sweave, LaTeX, and R to produce large research reports (i.e., lots of Sexpr() commands and heaps of graphs and tables). Obviously, R CMD ...
10
votes
2answers
289 views

How to save a layered pdf in R (via Sweave?)

I've searched SO, Googled, read ?pdf, and come up dry as to the possibility of saving a plot as a pdf with layers that can be swtiched on and off in the pdf viewer margins. An example of what I'm ...
10
votes
1answer
166 views

Including an image using roxygen documentation

Is it possible to include an image in documentation generated by roxygen? I have a number of functions that are essentially wrappers for ggplot() that I'd like to document by showing an example of the ...
9
votes
3answers
549 views

How to avoid using round() in every \Sexpr{}?

Is there a way to avoid the function round() when using Sweave/knitr? It's really annoying to write round(,2) in every \Sexpr{}. I would like to have two decimal places through the whole document. ...
9
votes
1answer
706 views

Handling Latex backslashes in xtable

I have a table that includes the following column: mytable <- data.frame(beta_0 = c(1,2,3) What I want to do is output a table with a column header in latex markup, e.g. $\beta_0$ However, I ...
8
votes
3answers
211 views

Can I suppress the arrow (“>”) in the R/S output in Sweave?

whenever I run some R code with Sweave, it displays the terminal arrows (">") in the document. This is fine for session inputs, but sometimes I'd like to include custom functions. When arrows show up ...
8
votes
1answer
2k views

How to put a newline into a column header in an xtable in R

I have a dataframe that I am putting into a sweave document using xtable, however one of my column names is quite long, and I would like to break it over two lines to save space ...
8
votes
3answers
510 views

What exactly does R CMD Sweave --pdf do?

I noticed this in the changes of R 2.14: R CMD Sweave now has a --pdf option to produce a PDF version of the processed Sweave document. Trying it out, I noticed that it not only ran pdfLaTeX on ...
8
votes
3answers
3k views

Sweave xtable: how to position tables between text?

I have a number of tables with text around them describing them. Something like this: This table shows blah blah... <<echo=FALSE, results=tex>>= print( xtable(x, caption = ...
8
votes
2answers
1k views

Getting Started with Sweave, Eclipse, and R

I am very new to LaTex and R, but I am learning on a daily basis. I really am getting into using Eclipse and want to join the party and start automating my work using Sweave; I am excited for the ...
8
votes
2answers
306 views

Is there a way to colorize comments/code in Sweave?

I found that I can keep comments in the Sweave code chunks by specifying keep.source in the \SweaveOpts, but is there a way to make the code listing look nice like with grayed out comments?
8
votes
2answers
250 views

Make Sweave or knitr put graphics suffix in `\includegraphics{}`

I just run into the (curious) problem that when submitting a (pdf)LaTeX manuscript to some Elsevier journal the filenames of figures needed to be complete in order to found by their pdf building and ...
8
votes
1answer
480 views

EMACS folding/unfolding R code

Is there an Emacs minor-mode (or piece of elisp code) that lets you selectively hide/show environments while in Sweave (Sweave = R + LaTeX)? For instance, I would like to move to the beginning of a ...
7
votes
2answers
297 views

how to produce a sweave document without angle bracket “>” in front of code chunks?

How can I produce a Sweave (or pgfSweave) document without angle brackets ">" in front of code chunks? I want people to be able to cut and paste my code directly from the pdf output. Here's a snippet ...
7
votes
2answers
541 views

Sweave Cache packages

I am trying to sweave a report and my problem is that every time i compile R loads the packages I use in the Report (like ggplot2, MASS, cubature..). This is very time consuming. Is there a way to ...
7
votes
3answers
638 views

Displaying errors with sweave

I'm writing some R notes with Sweave and would like to show common errors. For example, <<echo=TRUE, eval=TRUE>>= x = 5 #Case matters! x*X @ However when sweaving, the document won't ...
7
votes
5answers
2k views

R, Sweave, LaTeX - escape variables to be printed in LaTeX?

I've been searching for the past 2 days, and while I've found similar questions on Stack Overflow and other discussions on Google, I've found nothing matching my request. I have a pre-existing ...
7
votes
1answer
385 views

Sweave,R,Beamer : How to convert the LaTex text in an Rnw file to R comments?

Say I have a .Rnw file containing the usual LaTex mixed in with R code chunks. (I'm especially interested in converting a .Rnw slides document, but this question applies to any .Rnw document). Now I ...
7
votes
2answers
424 views

How to publish (sweave) regression formulas?

How can I publish a regression formula nicely? fit1<-dynlm(dep~indep1+indep2+indep3) s1<-summary(fit1) s1$call How can I Sweave s1$call ? I mean I do not want to have somethin like ...
7
votes
1answer
313 views

Why does Sweave throw an error on LaTeX code that has been commented out?

Sweaving the following: \documentclass{article} \begin{document} <<>>= x <- 5 y <- 10 @ The value of $z$ is \\ %\Sexpr{z} \end{document} generates the following error: Error in ...
7
votes
2answers
221 views

Sweave can't load R packages

I upgraded R to v2.14.0 and along with the upgrade I decided to move the standard package repository to Dropbox so laptop and desktop are in sync all the time. I set my ...
7
votes
1answer
495 views

How to use cacheSweave in a batch Sweave call via make?

I've been using a makefile to automate the running of Sweave for my analysis reports in R using the approach outlined by Jeromy Anglim with great success. I recently heard about the cacheSweave ...
6
votes
4answers
1k views

Run Sweave or knitr with objects from existing R session

Suppose I have an object x in my current session: x <- 1 How can I use this object in an Sweave or knitr document, without having to assign it explicitly: \documentclass{article} ...
6
votes
5answers
455 views

SWeave with non-R code chunks?

I often use Sweave to produce LaTeX documents where certain chunks are produced dynamically by executing R code. This works well - but is it also possible to have code chunks that are executed in ...
6
votes
4answers
7k views

Makefile for dummies? Mac OS X

I am having trouble understanding an answer to a previous question I asked here on stackoverflow located at: More efficient R / Sweave / TeXShop work-flow? The answer in particular is from user: ...
6
votes
3answers
1k views

Problems with ggplot and pgfSweave

I started using Sweave some time ago. However, like most people I encountered pretty soon a major problem: Speed. Sweaving a large document takes ages to run, which makes efficient working quite ...
6
votes
1answer
587 views

Getting Sweave code chunks to stay inside page margins?

Sometimes I get to make an R code chunk (in Sweave) which is longer then the margins of the page. Is there a way to force it to "go to the next line" once that happens? Here is a simple example of ...
6
votes
1answer
222 views

GNUEmacs/ESS/Latex/Sweave: text displays differently when cursor is in latex code or in R code

When I scroll through an Sweave document (Rnw) with latex and R code, the text jumps around when the mode changes between Latex and ESS. The two modes disagree how text should be wrapped. Moreover, ...
6
votes
1answer
855 views

Sweave: interpret R's output as LaTeX code

I have written some custom R code that wraps a third-party binary. One of that binary's features is to produce a LaTeX document with a figure and some text. One of my code's features is to parse that ...
6
votes
3answers
844 views

How do I Sweave a multiple-file project?

I am writing my thesis in LaTeX and because things got a bit long for my taste, I had split it into several files. Let's call them thesis.tex, intro.tex, mat_n_met.tex, rslts.tex and discsn.tex. I ...
5
votes
4answers
949 views

Sweave syntax highlighting in output

Has anyone managed to get color syntax-highlighting working in the output of Sweave documents? I've been able to customize the output style by adding boxes, etc. in the Sweave.sty file as follows: ...
5
votes
3answers
464 views

Can I place all sweave figures at the end of the document?

I have a LaTeX manuscript that inputs from a single Sweave file. The file creates plots and places them in the document using <fig=TRUE>. Is there a way that I can tell all of the figures to go ...

1 2 3 4 5 6