Sweave is a system for combining S (or R) code with LaTeX in a single document.
1
vote
1answer
165 views
Can Sweave read R files?
I am new to Sweave/Tex and would like to keep my R code out of the Sweave file as much as possible. Ideally, I would like to reference my R files within Sweave's .Rnw file and then have Sweave read ...
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 ...
1
vote
1answer
190 views
Using “R CMD pgfSweave” on Mac results in Rcmd error
I'm having problems running pgfSweave from the command line. In the pgfSweave manual it states that the package must be installed from source in order to be run as:
R CMD pgfSweave myfile.Rnw
So I ...
3
votes
2answers
494 views
Getting Sweave code chunks inside some framed box?
I would like to make an R code chunk (in Sweave) printed inside a framed box in the resulting pdf.
Is there an easy solution for doing that?
1
vote
3answers
831 views
get filename and path of `source`d file
How can a sourced or Sweaved file find out its own path?
Background:
I work a lot with .R scripts or .Rnw files.
My projects are organized in a directory structure, but the path of the project's ...
3
votes
2answers
469 views
Dynamically Generate PDF Reports with Sweave
I'd like to generate a large number of reports. For simplicity, let's say I want to create 5 small pdf documents with only a simple title that cycles through a vector of names.
...
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 ...
2
votes
3answers
171 views
Timed exit from a shell command
I have a shell script to generate two types of reports. Each report is generated by executing a Sweave script and then compiling a PDF out of the resulting tex file.
eval "R CMD Sweave Weekly.Rnw"
...
2
votes
1answer
573 views
Column names on each page with xtable in Sweave
I want to have column names on each page of the xtable.
\documentclass{article}
\usepackage{graphicx}
\usepackage{longtable}
\begin{document}
<<>>=
x <- matrix(rnorm(1000), ncol ...
2
votes
0answers
84 views
SASweave and server SAS?
We would like to implement SASweave, but our department runs off of a server version of SAS. Has anyone implemented this setup? I would be interested to hear about your experiences, whether positive ...
2
votes
1answer
859 views
Drawing path diagrams with R package 'sem' using Graphviz
I use the sem package to do my analysis. To draw a path diagram I use the pathDiagram function in sem to get the code and then use it in Graphviz to get the diagram. I have two questions:
...
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 ...
0
votes
0answers
136 views
R/Sweave + LaTeX: Making a postcsript figure spanning the whole page in landscape mode
I have the following data that I would like to graph:
Date Amount
2011-11-02 70000.11
2011-11-21 69000
2011-12-01 95000.76
which is to be saved as quantity.R
and here is my code in Sweave:
...
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 ...
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, ...
1
vote
2answers
228 views
The use of format.pval in R (and with \Sexpr in Sweave)
I have read the help file for format.pval and was wondering if this is a right tool to output numbers with proper format as far as significant digits are concerned
In this post:
R / Sweave ...
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}
...
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 ...
14
votes
3answers
858 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 ...
0
votes
1answer
536 views
R / Sweave: Prefixing and figure file naming
I am new to R and much newer to Sweave and I am experimenting with graphics. Here is a sample code:
\documentclass[a4paper]{article}
\usepackage{Sweave} %%%%%%
\SweaveOpts{eps=true}
\begin{document}
...
0
votes
1answer
187 views
R: Plotting 4x4 plot with for -loop and png, why getting 1x1 plot instead of 4x4?
I can get the 4x4 plot working when I try it on command line but not with for -loop and png element in the code below. I am frustrated what the heck the problem is, I have tried to understand this now ...
0
votes
1answer
164 views
Hide entire part of document using Sweave condition
I would like to hide an entire part of my document including the LaTeX parts between code chunks.
The code might look like
<<echo=FALSE, results=tex>>=
if (showpart) {
@
Here we have ...
2
votes
1answer
316 views
Figure numbers generated by Sweave/R and why only (PDF)LaTeX
I am continuing my earlier post here:
Beginner's questions (figures, bibliography) with Sweave/R/LaTeX---my first document
The working code is reproduced here:
\documentclass[a4paper]{article}
...
1
vote
2answers
448 views
Beginner's questions (figures, bibliography) with Sweave/R/LaTeX---my first document
I am just starting with Sweave and with R. Here I am using R to output some data and I am also trying to include a plot. The code does not sweave. I have one Sweave example from the web that compiles ...
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 ...
2
votes
1answer
983 views
What is a null graphics device?
I'm reading the R help page for ?devAskNewPage (it was linked from ?par...ask). I can't understand what par(ask=F) / par(ask=T) does.
What do I need to read about to understand this:
If the current ...
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 ...
4
votes
4answers
227 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 ...
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 ...
5
votes
2answers
285 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 ...
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 ...
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 ...
3
votes
1answer
131 views
Best way to store and later use captions with Latex in Sweave?
I would like to write figure captions in the R mode of Sweave and then, add the captions to a list, and later use them in a figure caption, for example:
caption <- list()
myresult <- ...
3
votes
2answers
353 views
Is there a way to push an R script file into a sweave document (opposite of tangle)
I often create specific sweave files to do analyses and produce pdf documents, however, sometimes I want to take an existing R script file and run it while producing a pdf of the commands and output ...
1
vote
2answers
152 views
Is it possible to make the \newcommand control sequence handle sweave code?
I use latex to write up homework assignments. I need to include both charts and R code with my assignment. Sweave has worked well for me so far, but I'd like to simplify common code blocks like ...
3
votes
1answer
996 views
Formatting Sweave Tables, two challenges
I'm struggling with two formatting challenges in Sweave. One is the italicization of text in the table, the second is how to add a column summation row to the bottom of a table. Please see the ...
5
votes
3answers
461 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 ...
2
votes
4answers
1k views
side-by-side figures in Sweave
I use this code to make figures in Sweave
<<label=fig1plot, include=FALSE >>=
plot(cars)
@
\begin{figure}
\begin{center}
<<label=fig1, fig=TRUE, echo=FALSE>>=
...
0
votes
1answer
90 views
why am I getting \tikzexternaldisable as undefined with pgfSweave?
Simple case.
R-2.13.2
pgfSweave 1.2.1
pgf 2.10
I define a very simple file to test with.
\documentclass{article}
\title{Testing pgfSweave figures with tikz device}
\begin{document}\maketitle
...
2
votes
6answers
1k views
Use R and Latex to Automate Powerpoint Reports
I have a report template that I use quite often. The analysis is completed in R, but at the moment here is my workflow:
Use R to run the analysis and export the results to csv files
Use excel ...
5
votes
1answer
295 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 ...
2
votes
3answers
545 views
ggplot2 and sweave - plot is in Rplots instead of main pdf?
I've been following the examples on similar posts, but to no avail.
Here is an example of the problem I'm seeing.
Saved in tmp.Rnw:
\documentclass[10pt]{article}
\title{Reproducible Example}
...
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 ...
1
vote
1answer
236 views
Combine syntax highlighting of different Eclipse editors
I use Eclipse, StatET and the Sweave plugin to write my R and Latex code. The cool thing is that R and Latex code can be put together into one file, however you end up with a syntax highlighting ...
3
votes
1answer
658 views
Trying to understand the workflow between latex, sweave and R
Let's say I have written the following tiny .Rnw file:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{Sweave}
\usepackage{tikz}
\usepackage{pgf}
\begin{document}
<<>>=
...
0
votes
0answers
124 views
Error compiling sweave document in Eclipse with pgfSweave
I am new to Sweave and pgfSweave in R but I am familiar with Eclipse.
I tried to compile several examples but I always end up with the same error.
From the .tex file it is obvious why the document ...
3
votes
2answers
605 views
How to turn a LaTeX Sweave file (Rnw) into HTML?
I searched for this, but couldn't find a solution.
I understand that one could use the HTML markdown with Sweave, and then output it to HTML using:
library(R2HTML)
Sweave('temp1.rnw', driver = ...
3
votes
1answer
941 views
Sweave doesn't seem to get .Rnw file encoding right
This question arose out of the following question on tex.sx: Sweave generating invalid LaTeX. The problem seems to be that Sweave is not recognizing the encoding of the file, despite the locale being ...
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 ...
0
votes
2answers
545 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 <- ...


