Tagged Questions

Sweave is a system for interspersing S (or R) code with LaTeX. It is an implementation of Donald Knuth's Literate Programming concept.

learn more… | top users | synonyms

16
votes
7answers
905 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, ...
15
votes
11answers
2k 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 ...
14
votes
4answers
352 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
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 ...
12
votes
3answers
245 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 ...
11
votes
1answer
183 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 ...
11
votes
1answer
158 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 ...
10
votes
1answer
190 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 ...
10
votes
1answer
269 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 ...
10
votes
3answers
392 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
6answers
1k 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" ...
8
votes
1answer
121 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 ...
8
votes
2answers
189 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
3answers
821 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 ...
8
votes
2answers
867 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 ...
7
votes
1answer
202 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 ...
6
votes
2answers
89 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 ...
6
votes
2answers
146 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 ...
6
votes
1answer
116 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 ...
6
votes
2answers
213 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 ...
6
votes
2answers
148 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 ...
6
votes
5answers
527 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 ...
6
votes
5answers
329 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
3answers
382 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 ...
6
votes
3answers
932 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 = ...
5
votes
1answer
109 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 ...
5
votes
2answers
88 views

Silencing a package load message in Sweave

I'm loading optmatch in a Sweave document as follows: <<myCodeBlock, echo=FALSE>>= library(optmatch, quietly=TRUE) @ You're loading optmatch, by Ben Hansen, a package for flexible and ...
5
votes
3answers
110 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 ...
5
votes
1answer
167 views

Is there a way to define all Sweave options in code?

Quoting from the pgfSweave manual: How do I set subdirectories for gures and caches? This is straight out of the Sweave and cacheSweave manuals (nothing new here). For a figures subdirectory use ...
5
votes
2answers
178 views

How to get Sweave to put graphics in separate folder AND name them after the Rnw file

I've seen a few questions about this, but can't work out how to do what I want. By default, Sweave creates graphics by concatenating the name of the Rnw file and the name of the graphic object label. ...
5
votes
2answers
104 views

How to controll the echo width using Sweave

I have a problem with the width of the output from echo within sweave, I have a list with a large amount of text. The problem is the echo response from R runs off the page within the pdf. I have tried ...
5
votes
1answer
228 views

Set up Vim to work with R and Sweave in Windows

I have installed vim in windows and would like to configure it so i can send code to R. I want to also use Sweave with it. However, i have Googled and failed to find clear step-by-step instructions on ...
5
votes
1answer
231 views

How do I get the dependencies for the pgfSweave package (e.g. a current PGF) in MikTeX?

I installed the pgfSweave package for color syntax in LaTeX documents, but I ran aground when it comes to a LaTeX dependency. I've installed the pgf package via MikTeX's Package Manager (Admin) and ...
5
votes
1answer
141 views

Changing the Sweave driver from the command line

My current Makefile for weaving looks something like: SUFFIXES: .tex .pdf .Rnw MAIN = lecture INCLUDES = chapter1.tex chapter2.tex ... all: $(INCLUDES) $(MAIN).pdf $(MAIN).pdf: $(INCLUDES) ...
5
votes
1answer
273 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 ...
5
votes
1answer
167 views

Make Sweave + RweaveHTML put all graphics in a specified folder

As a refinement of this question, does anyone know how to tell Sweave (or better the driver) to put all the graphics in a specific directory when using the RweaveHTML driver from the R2HTML package? I ...
5
votes
4answers
496 views

Combining several regression tables into one for use in xtable with Sweave in R

xtable in Sweave works awesome, but does one table per regression. You can feed it a data frame, too, so I have been manually rbinding and pasteing results into data frames, but that doesn't seem very ...
5
votes
3answers
785 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 ...
5
votes
2answers
158 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 ...
5
votes
4answers
1k 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 ...
5
votes
1answer
616 views

How to include multiple tables programmaticaly into a Sweave document using R

I want to have a sweave document that will include a variable number of tables in. I thought the example below would work, but it doesn't. I want to loop over the list foo and print each element as ...
4
votes
2answers
73 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 ...
4
votes
1answer
137 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 ...
4
votes
1answer
108 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, ...
4
votes
4answers
127 views

avoid displayed figures during sweave/pgfsweave compilation

When compiling with sweave/pgfsweave, every time a figure is created in R it is shown in a graphics windows (during the sweave compilation process). This is helpful in many cases as I can see what the ...
4
votes
1answer
218 views

Split xtable ouput into sub tables

Have a question on using xtable with Sweave when there are multiple columns. A table I am working on has about 25 columns and 5 rows. The exact number of columns is not known as that is dynamic. When ...
4
votes
1answer
291 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 ...
4
votes
1answer
221 views

pgfSweave removes tikz-generated diagram

I run pgfSweave on a document that includes both diagrams drawn inline using tikz, and inline R-code. The R-code is executed and perfectly rendered but the diagrams don't appear in the final PDF. ...
4
votes
3answers
334 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 ...
4
votes
2answers
982 views

ESS/AucTeX/Sweave integration

I'm using GNU/Linux distro (Arch, if that's relevant), Emacs v23.2.1, ESS v5.9 and AucTeX v11.86. I want to setup AucTeX to recognize .Rnw files, so I can run LaTeX on .Rnw files with C-c C-c and get ...

1 2 3 4