Sweave is a system for combining S (or R) code with LaTeX in a single document.
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}
...
3
votes
1answer
948 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 ...
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
...
11
votes
1answer
608 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 ...
5
votes
5answers
1k 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 ...
3
votes
2answers
273 views
Sweave, include sourced R-Function files
I have an Rjob writen in file a.R which calls functions writen in file b.R, and a snw file c.snw. I call c.snw via "R CMD c.snw".
I am looking for a possibilty to only include a.R via ...
7
votes
3answers
641 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 ...
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( ...
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{} ...
2
votes
2answers
567 views
R / Sweave arguments
I'm using R and Sweave to generate a report.
R CMD Sweave MyReport.Rnw
I want to be able to send arguments to the R code because the report is , of course, "Dynamic".So, I would like to be able ...
2
votes
1answer
359 views
Dynamic references to figures in a R comment within Sweave document
I would like to find a way to use the LaTeX \ref{} markup to comment in the R code within a Sweave .Rnw file. Here are two examples, one in print
...
1
vote
2answers
450 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 ...
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 ...
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, ...
14
votes
3answers
861 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 ...
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?
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 ...
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 ...
11
votes
3answers
564 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.
...
12
votes
1answer
892 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 ...
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 ...
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 ...
5
votes
1answer
280 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 ...
2
votes
4answers
574 views
Print the sourced R file to an appendix using Sweave
I keep R and Rnw files separate, then load the R data/plots with load("file.R") in the first Sweave chunk. Is there a way that I can print the sourced R file to an appendix without executing all of ...
7
votes
2answers
544 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 ...
6
votes
1answer
593 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 ...
3
votes
2answers
358 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
4answers
2k views
How can I produce report quality tables from r?
If I have the following dataframe called result
> result
Name CV LCB UCB
1 within 2.768443 1.869964 5.303702
2 between 4.733483 2.123816 18.551051
3 total 5.483625 ...
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 ...
4
votes
1answer
861 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 ...
3
votes
1answer
662 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}
<<>>=
...
3
votes
1answer
2k views
Change the size of ggplot2 plot in Sweave without making the text/numbers disproportionately large
I found this question about changing the size of a ggplot2 plot in Sweave. I added the Sweaveopts{width=3, height=3} and it does shrink the size of the plot, but it doesn't scale down the text. So in ...
3
votes
2answers
785 views
header on each page of big table of xtable?
How do you put on a big table of xtable the table header on each page?, So that is easier to read the table the table between pages.
I use the following in Sweave:
test.big<- ...
2
votes
1answer
578 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
1answer
866 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:
...
2
votes
3answers
1k views
Rreport/LaTeX quality output package
I'm looking for some LaTeX template for creating quality output. On R-bloggers I've bumped on Frank Harrel's Rreport package. Due to my quite modest LaTeX abilities, only a user-friendly (and ...
1
vote
1answer
278 views
Way to automatically escape characters ('_','\' etc) using knitr
I m using Rstudio under Win7. Is there a way that knitr automatically escape a character? Please see below for a simpler example:
\documentclass[a4]{article}
\title{Example}
\author{Stat-R}
...
5
votes
1answer
545 views
Emacs, R, Sweave: UTF-8 encoding is not recognized when launching Sweave through Emacs
I work with Emacs 24 on Mac OS X 10.7.3 with R 2.14.0. I have a file foo.Rnw containing
\documentclass[
paper=a4,% 210mm × 297mm
pagesize% write page size to dvi
]{article}
...
3
votes
2answers
438 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 ...
3
votes
2answers
1k views
how can I suppress output from Sweave that is not suppressed by echo=FALSE?
I am getting extraneous output in my .tex file that I can not suppress with <> or sink(). Notably, the unwanted lines are not enclosed by ..{Schunk} or similar.
This occurs for me when I use ...
2
votes
1answer
1k 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 ...
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
2answers
494 views
Windows batch R Sweave error loading packages
I am having trouble finding clear documentation on how to set up a batch file for a Sweave document on Windows XP.
I am using the batch files that are found here
I have created a batch file names ...
1
vote
2answers
2k views
PHP shell_exec not working
I'm trying to run a shell script on my MacOSX, but it's not working.
My report.sh file calls another .sh file (Sweave.sh) that is stored in /usr/local/bin.
<?php
shell_exec("./report.sh");
echo ...
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 <- ...
0
votes
1answer
198 views
Set directory of files created by a shell script?
EDIT: had to retag this, because, it's rather a Sweave / R question since the problem of this script is the output directory of the Sweave Code. Is there a corresponding option for R CMD Sweave ?
I ...