Tagged Questions
1
vote
0answers
63 views
Doodle on top of Sweave output
It might not be possible to do this, but I was wondering if there is a way to doodle on top of the LaTeX output, or in my case on top of Sweave output.
See example underneath!!
...
1
vote
1answer
484 views
Reducing R figure sizes in lyx?
I am using LyX with the Sweave module to generate some R figures within a document. I can't seem to get the figures to be smaller, and they tend to take up half a page which is far too large.
I have ...
3
votes
0answers
245 views
Can I import existing .Rnw Sweave file into LyX? [closed]
I am trying to import an existing Sweave .Rnw file into LyX. I wonder whether LyX is capable of doing it? My LyX version is 2.02 and I can use its Sweave module with no problem. I find out it does ...
0
votes
0answers
229 views
LyX & Sweave cannot generate tons of plots at once [closed]
This is less of a question than a warning. In LyX 2.1.0 with pgfSweave under Ubuntu 10.04 I've been trying to generate a number of plots with a for loop. For example
<<fig=TRUE>>=
for ...
0
votes
1answer
142 views
xtable in pgfSweave (on lyx) : output=tex is invalid?
Many tutorials online say that to include a table in Sweave one should write something like this:
<<output=tex>>=
require(xtable)
stuff
xtable(stuff)
@
That makes sense. But when I do ...