Tagged Questions
5
votes
1answer
55 views
Package for formatting numeric values in reproducible research
Is there a standard way of converting numeric values to character with a particular type of formatting applied.
I'm thinking of something like:
formatR(32390,"dollars")
# returns "$32,390"
...
1
vote
1answer
24 views
How to Control Margin of R Plot in Sweave Using Eclipse with Yap (.dvi)?
I'm having an issue with TeXlipse where I'm generating a plot in Eclipse via Sweave, and the TeX file seems to be jamming all of my PDF plots in the left most corner of the page. This is driving me ...
0
votes
1answer
83 views
ggplot2 plot fill page in landscape (pdf)
I'm trying to render a plot to a PDF using the following approach:
pdf('~/Desktop/test.pdf', bg = "white", paper="USr")
p <- ggplot(df, aes(something)) + geom_bar();
print(p)
# I'm actually ...
0
votes
1answer
34 views
How to access cox.zph components
I would like to use the P value of cox.zph in a Sweave document, something like this:
<<echo=FALSE,results=tex>>=
campo = campos[1]
m1=coxph(Surv(TimeVar,EventVar)~Factor)
z=cox.zph(m1)
...
3
votes
2answers
85 views
R Sweave Computer Modern font usage
I've installed the R packages extrafont and fontcm. Then tried to plot the data with Computer Modern font in Sweave:
<<test,fig=TRUE,echo=False>>=
plot(na, family="CM Roman")
@
But it ...
1
vote
0answers
42 views
Table nested by a factor variable - how to Sweave correctly?
I want to Sweave a table of matrices from an R script to a LaTeX document. I have results from which I need to pick some values to make up a matrix akin to this:
(for i in levels(groups)){
mat[[i]] ...
1
vote
1answer
53 views
R Sweave “not run” option
I use Sweave in R to make a package vignette and would like to know if there is a way to "not run" certain code within a Sweave tag, for example:
\documentclass{article}
\usepackage{Sweave}
...
2
votes
2answers
76 views
fit an xtable to a pdf file
I am creating a sweave document that uses xtable to create table and puts into a pdf file. It works but table is not fitting the document and some text are missing. Is there a way to text align in ...
1
vote
1answer
33 views
Dynamic references to figures in Sweave
Before you say use search, I did, I read this answer, I tried it and it does not help, I assume it might be because of including it from another file. (not sure..)
I have a Sweave document I am ...
0
votes
1answer
48 views
Access function from current package when using R CMD check with vignette
I'm putting together a package; for simplicity with one function and one vignette illustrating its use.
I was able to run R CMD check packagename with no difficulties before I tried adding the ...
1
vote
1answer
69 views
Sweaving #-Symbol
How can I Sweave text with a #-sign?
Here, Sweaving and compiling is no problem:
<<echo=false,results=tex>>
cat("This is my text\n")
@
But here, compiling gives an error:
...
1
vote
2answers
77 views
DocBook & R with Sweave/knitr
R and LaTeX (...) can be easily combined using Sweave or knitr.
Is there any possibility to accomplish the same with DocBook?
4
votes
1answer
90 views
Compile an .Rnw with greek text to pdf
I tried it using the commented out code without success. Can somebody help?
\documentclass[a4paper]{article}
%\usepackage[english,greek]{babel}
%\latintext
\title{Sweave Example 1}
\author{George ...
3
votes
2answers
98 views
How to automatically prevent R inputs in Sweave from running off the right margin?
Is it possible to get Sweave to automatically print R inputs over multiple lines ? For example,
\documentclass{article}
\begin{document}
\SweaveOpts{concordance=TRUE}
...
0
votes
1answer
123 views
xtable and header alignment
Is it possible to have a header alignment in xtable which is different from the alignment used in the rest of the table? In my case, I want my header to be center aligned, but the table itself should ...
0
votes
1answer
149 views
xtable rownames using R
I am using R and LaTeX and the xtable package for tables. I am a little puzzled why my specified rownames aren't showing up in my tables. Here's an example:
\documentclass[a4paper, 11pt]{article}
...
1
vote
1answer
63 views
How to include R stderr output in Sweave document [duplicate]
I'm working on R package vignettes and there are a number of cases where I'd like to include the error output in the document as an example for users.
So the Sweave code chunk
...
3
votes
2answers
352 views
Using xtable with R and Latex, math mode in column names?
I'm using xtable to compile tables from R automatically while compiling my TeX document. The question I have is how I get the variable names in the table (which in my case are the column names in a ...
2
votes
2answers
55 views
Paste “25 \%” in R for further processing in LaTeX
I want a character variable in R taking the value from, lets say "a", and adding " \%", to create a %-sign later in LaTeX.
Usually I'd do something like:
a <- 5
paste(a,"\%")
but this fails.
...
0
votes
0answers
109 views
Setting working directory for Rnw / latex in R
Hi I am trying to use R and latex to make a pdf document for my data analysis.
In my original *.R document I have changed the working directory multiple times to refer to the data. The reason I ...
1
vote
1answer
324 views
sweave, xtable, longtable and alternating row colors…problems with `add.to.row`
This existing question covers a way to alternate row colors in a latex table by post-processing the output from print.xtable(), but I think it's possible to achieve the same thing by using the ...
2
votes
3answers
99 views
Function for mean and sem in Sweave/knitr implementation
I am brainstorming to write a mean and sem function for Sweave/knitr use. And for my limited knowledge it look like this
m.se <- function (x, na.rm = TRUE) {
if (na.rm)
x <- ...
1
vote
1answer
131 views
stargazer() for models with singularities
I try to create a table of regression results using the stargazer package.
Unfortunately stargazerrefuses to create the table because of singularities.
As these singularities come from overlapping ...
2
votes
1answer
91 views
Whitespace in reused code chunks
I'm starting to learn R and Sweave and have spent the last couple of hours trying to figure out a problem that, according to my Google-fu, seems to be rather unknown or uncommon (as I found only two ...
2
votes
1answer
84 views
Attach date to PDF generated with Sweave
I generate via Sweave a daily report. I would like to attach to the PDF´s name the current date in the format YYYYMMDD. I am using the following code to generate the file:
rnwfile <- ...
3
votes
3answers
159 views
Making flattened pdfs in Sweave
So I am creating pdfs using Sweave that include some graphs that have a ton of points on them. I can get the pdf well enough, but it seems to have created it with a ton of layers, so it's hard to open ...
5
votes
4answers
268 views
workflow between Latex and R screwed
Trying to write my second Latex file
\documentclass{article}
\title{simple Sweave script}
\usepackage{/Users/Brenden/Documents/R/R-2.15.1/share/texmf/tex/latex/Sweave}
\begin{document}
\maketitle
...
2
votes
1answer
319 views
add latex to knitr multiple graphs
Hi I have some code producing multiple graphs with knitr mocked up below. The graphics grid that is produced is quite small and I'd like to add a \adjustbox{scale=1.25}{\includegraphic{**}} to the ...
1
vote
2answers
108 views
Inverted Question(¿) in Sweave/tikZ Generated R Plot
I am relatively new to Sweave, and R in general and have been having issues trying to render basic math symbols in my plot labels. I believe the problem may be cause by either Sweave or tikzDevice ...
4
votes
1answer
91 views
Using Sexpr{} within \SweaveInput{}
I have this 2 lines of code which I run with R Sweave function.
\SweaveInput{samples.rnw}
\SweaveInput{\Sexpr{args$samples}}
The first line leads to the inclusion of the content of the ...
2
votes
1answer
100 views
Match ODFWeave and ggplot2 image resolution/size
I'm creating charts using ggplot2 inside ODFWeave code chunks. I am setting the ODFWeave dimensions to 5x5in, but the graphs are being created at 480x480 px which looks like a default. How can I make ...
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 ...
0
votes
0answers
55 views
Sweave script fails from php call
I'm trying to automate a report using PHP + Sweave, using the PHP function 'shell_exec'
to call the R CMD Sweave, creating my pdf report. I'm running Apache on Mac OSX.
When i call it from the ...
1
vote
1answer
384 views
R Sweave output error
I'm using RStudio v0.96.331 with pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian).
I have a R project in the '/home/operacao/Myprojs/projName', which is my working directory.
Now, if i create ...
1
vote
1answer
92 views
Setting up Stat-ET Sweave for the first time
I've been following the Getting started with Sweave guide and created a new project folder called MISC with a subfolder called Sweave.
I've placed my sample .Rnw file in this folder together with a ...
2
votes
1answer
111 views
odfWeave error source document containing non-ASCII chars
Getting this error calling ODFWeave on my doc.
Pre-processing the contents
Sweaving content.Rnw
Error: ‘content.Rnw’ is not ASCII and does not declare an encoding
I've seen some ways you can ...
1
vote
0answers
71 views
R, Sweave: How to pass file encoding to patchDVI::SweavePDF?
I have a master file master.tex containing the preamble and which inputs (via
\input{chapter01}, \input{chapter02}, ...) chapters. The chapters are .Rnw
files. My goal is to use patchDVI::SweavePDF to ...
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 ...
2
votes
1answer
375 views
Writing an R package vignette that reads in an example file?
I'm trying to write a vignette for a package in R. I've been following a tutorial from Vanderbilt University as well as the offical documentation.
I made a .Rnw Sweave file and put it into a ...
3
votes
1answer
258 views
How to control wrong pagebreaks of longtable in latex() from Hmisc package?
I'm using Sweave and latex() from the Hmisc package to insert a longtable in my PDF.
When I do it the first time, the table is spread nicely, filling up the pages with the table.
If I do it again, ...
1
vote
1answer
241 views
How can I Insert images into .rnw document
I work in R and deliver PDF file with Sweave, sweave(.rnw document). I need to put into my text a JPEG image. I didn't find any function on the web and have no ideas about how I could do that.
11
votes
3answers
570 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.
...
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?
2
votes
0answers
34 views
How to read command line parameter in sweave? [duplicate]
Possible Duplicate:
R / Sweave arguments
I am working on latex and R. I want to read command line parameter in using sweave. I found one example.
R / Sweave arguments
Can someone please ...
4
votes
2answers
806 views
Correlation matrix with p-values for xtable
I want to have correlation matrix with p-values for xtable to be use in Sweave. I tried this
library(ltm)
library(xtable)
mat <- matrix(rnorm(1000), 100, 10, dimnames = list(NULL, LETTERS[1:10]))
...
3
votes
1answer
98 views
using legend() in Sweave: is this a bug?
Right now I am learning sweave to write a package vignette. I am using traditional R graphics. Strangely a legend that I added to a highlevel plot that works fine otherwise does not work when I Sweave ...
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 ...
0
votes
1answer
55 views
what does it mean that “cacheSweave doesn't cache side-effects”?
I'm using cachesweave, but I don't think I get how everything works. I've tried to separate the code into simulation chunks and the plotting chunks, but some of the code is very long and written ...
14
votes
3answers
319 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 ...
0
votes
1answer
196 views
xtable for arrays
I'm trying to use xtable for 3-dimensional array. My minimal example is
Test <-
structure(1:8, .Dim = c(2L, 2L, 2L), .Dimnames = list(c("A1",
"A2"), c("B1", "B2"), c("C1", "C2")))
library(plyr)
...