Sweave is a system for combining S (or R) code with LaTeX in a single document.
0
votes
2answers
549 views
xtable output for a list of tables
I've a list of tables and want to sweave it for LaTex output. Here is the code:
Data <- esoph[ , 1:3]
library(plyr)
combos <- combn(ncol(Data),2)
TabelFn <- function(x) {
Table <- ...
4
votes
1answer
862 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 ...
1
vote
1answer
407 views
Generating batch custom reports using Sweave & LaTeX
I am working on creating some personalized reports using Latex and Sweave. I need to generate the reports in a batch (the dataset has about 300,000+ rows). I have come across several methods on the ...
0
votes
2answers
468 views
Sweave & Lyx fig=T in Sweave
I'm following Gregor Gorjanc's tutorial on LyX & Sweave. Using Ubuntu 10.04 and LyX version 1.6.5 with all of texlive-full installed.
R scraps which result in numerical output produce a valid ...
2
votes
2answers
251 views
Getting the list of functions in an R package to be used in LaTex
I used
library(help="stats")$"info"[[2]]
to get the list of available functions with their description in stats. I'd like to make a table out of this using xtable to be use in Sweave for LaTex.
I ...
8
votes
2answers
308 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?
5
votes
2answers
414 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
325 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
376 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 ...
1
vote
0answers
81 views
Sweave not finding dataframes [closed]
I am just beginning to use Sweave. I am using Rstudio and trying to get a latex document with are output. I keep getting an error message suggesting that there is a problem finding the dataframe on ...
13
votes
1answer
866 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 ...
2
votes
1answer
173 views
Sweave + RweaveHTML: cat output does not appear in the output
I have a problem with Sweave + RweaveHTML
I want the output of cat ends to up in the html file being generated. I have a case in which it does not and I can't figure out why :(
test = function()
{
...
2
votes
0answers
286 views
Making pgfsweave work with all ggplot2 plots
Have run into a problem using ggplot2 and pgfsweave(+Lyx). When I run my code in R, I get a nice plot with coloured/shaded tiles, and those tiles do not appear when running via pgfsweave. Note that ...
2
votes
2answers
195 views
Detect and handle a LaTeX warning/error generated via an os.system call in Python
I wrote a python script to automate turning Sweave/LaTeX documents into PDFs. Here's the most important part:
os.system("""echo "Sweave('%s.Rnw')" | R --vanilla --quiet"""%topic)
seq = ...
4
votes
1answer
707 views
how to get sweave to center figures without centering code
One way to get sweave to center figures is to include something like the following
\begin{figure}
\begin{center}
[sweave chunk]
\end{center}
\end{figure}
However, if you want to display the code to ...
7
votes
2answers
425 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
1answer
867 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 ...
2
votes
1answer
408 views
Sweave how can I write R code inside the latex table environment?
I am working on Sweave now, when I want to use R code to describe one variable in the latex table.
It turns out that Sweave cannot read these R codes, the output is not the variable, instead, the ...
4
votes
2answers
2k views
R: Print two tables with xtable ()
I have data tables (d1 and d2) which I would like to print side by side or on top of each other in latex with their own individual titles. Is it possible to do that directly with xtable()? The two ...
1
vote
0answers
49 views
SweaveListingUtils and line numbers
I'm currently trying to use SweaveListingUtils. Because of the vignette, the first steps are quite easy.
Only the line numbers (including references) are not working as intended/expected (the ...
7
votes
2answers
299 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 ...
0
votes
0answers
367 views
Multiple references to one footnote on one page in latex needed because using Sweave loop
I am using Sweave to generate PDFs. I often use loops to generate many pieces of output, e.g. graphics, which all need the same explanation which I put in a footnote. But then if there are more than ...
3
votes
1answer
218 views
Rendering grid graphics in Sweave
I have a short routine which arranges ggplot and grid graphics using the grid.arrange function in the package gridExtras. I need to render the output from my routine (which nominally prints using ...
0
votes
0answers
244 views
How to output custom R code in a Sweave document
Does anybody know how to output your own R code (no plots, no xtables) in a Sweave document?
I'd like to do something like this
<< echo=F,results=tex>>=
cat("Hello world")
...
4
votes
1answer
352 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. ...
3
votes
3answers
1k views
R - adding page numbers to PDF
I'm having trouble adding page numbers to PDFs. Here's how I'm inserting pages / plots:
pdf( file = pdfFilePath , width = 11 , height = 8.5 )
for ( ... ) {
grid.newpage()
pushViewport( ...
3
votes
1answer
1k views
easiest way to write a title page to pdf without Sweave
I have R code (using ggplot2) that pumps out a bunch of charts to PDF and I'm happy with the layout. I just want to slap on a decent-looking title page which is just some centered text. Google seems ...
5
votes
1answer
380 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 ...
3
votes
2answers
4k views
How can I change fonts in a beamer presentation that uses Sweave?
When I include \usepackage{Sweave} in the preamble of a beamer presentation, beamer ignores changes to font, e.g., \usepackage{helvet}.
Here is a minimal example:
...
2
votes
1answer
347 views
Non-continuous line numbering with Sweave and listings
I'm writing a report in LaTeX, embedding several R scripts, which are reported in non-contiguous Sweave chunks.
I found some pretty useful comments on Stackoverflow on how to customize Sweave and the ...
3
votes
2answers
404 views
Syntax coloring input using Sweave with TeXShop?
I've just started using Sweave on TeXShop ( which runs on OSX). Is it possible to have syntax coloring of the source code so that I can distinguish between raw text and R-code?
For example, the ...
5
votes
1answer
203 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) ...
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 ...
2
votes
1answer
458 views
odfWeave and MS Word
I use odfWeave for purposes of reproducible research. I've discovered it generally works well on MS Office 2007 using .odt files generated in Word, but \Sexpr{} commands almost always fail. I ...
10
votes
3answers
605 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 ...
0
votes
2answers
444 views
Output a table with standard errors below estimates
So I've got some parameter estimates like so
est<-matrix(1:10,nrow=2)
colnames(est)<-c("a","b","c","d","e")
and I've got some standard errors like so
se<-matrix(seq(0.1,1,by=0.1),nrow=2)
...
0
votes
1answer
300 views
Using “if else” (and possibly other) conditionals inside \Sexpr{}
Is it possible to use conditionals inside \Sexper{} in Sweave? An example of what I'm trying to do is
\Sexpr{if(coef(model1)[3]<0){-1*round(coef(model1)[3],3)}else{round(coef(model1)[3],3)}}
...
1
vote
2answers
1k views
Adding options [keepaspectratio=true, scale = 0.75] to \includegraphics{} in Sweave
I have the following R code
<<Q1b1, fig=TRUE>>=
qqnorm(resid(model1), main=NULL)
@
and I would like to add the option [keepaspectratio=true, scale = 0.75] to the \includegraphics{} ...
1
vote
1answer
1k views
Using \Sexpr{} in LaTeX tabular environment
I am trying to use \Sexpr{} to include values from my R objects in a LaTeX table. I am essentially trying to replicate the summary output of a lm object in R because xtable's built in methods ...
0
votes
1answer
498 views
What is the ‘correct’ way to configure the R ‘working directory’ and ‘Project location’ in Eclipse with StatET?
Unfortunately, I’m going round and round in circles when it comes to using Sweave in Eclipse with StatET under OS X.
If I create a project Foo in the default location ...
6
votes
5answers
457 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: ...
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 ...
7
votes
1answer
498 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 ...
2
votes
1answer
208 views
Access cacheSweave objects from cache
I use Sweave and cacheSweave with pleasure.
Occasionally I have a document in which some section takes a really long time (like 20 minutes or something) and after processing I'd like to open up the ...
5
votes
4answers
954 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:
...
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" ...
2
votes
1answer
182 views
vim on Rnw (sweave) files: how to indent <<>>= properly?
(This question is close to one I posted yesterday on tex.stackexchange, but I have come to realize I should have posted it here.)
When I use Vim latex-suite to indent my .Rnw files, the Sweave blocks ...
5
votes
1answer
281 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 ...
3
votes
2answers
439 views
How to make sweave copy generated graphics to a subfolder?
I would love to use some shell script based pdfcrop on all the graphics.pdf created from my Sweave report. Hence i'd be nice if all the graphics were stored to a subfolder instead of being dropped ...
