Tagged Questions
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
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 ...
2
votes
3answers
172 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"
...
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 ...
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 ...