Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Passing parameters to R script

by toolic (Bishop)
on Oct 15, 2007 at 16:55 UTC ( [id://644979]=note: print w/replies, xml ) Need Help??


in reply to Passing parameters to R script

Since I have no experience with R, I can not answer your question directly.

However, have you considered using Perl to generate your R command input file with whatever parameters you need, then load that new command file into R?

> cat 644967.pl #!/usr/bin/env perl use warnings; use strict; my $x = shift; my $cmd_file = 'cmd.txt'; open my $OUT_FH, '>', $cmd_file or die "Can not open $cmd_file $!\n"; print $OUT_FH <<"EOF"; x <- c(1:$x) y <- c(x^2) png(filename="plot.png", bg="transparent") plot(x, y) dev.off() EOF close $OUT_FH or die "Can not close $cmd_file $!\n"; > > ./644967.pl 13 > > cat cmd.txt x <- c(1:13) y <- c(x^2) png(filename="plot.png", bg="transparent") plot(x, y) dev.off() >

Replies are listed 'Best First'.
Re^2: Passing parameters to R script
by j1n3l0 (Friar) on Oct 15, 2007 at 18:43 UTC
    Thank you both

    I have considered doing it this way (writing an R file). I just felt I was not far from the R solution. I know this is not the best place to be asking an R question but I have had useful advice to all my questions in the past I am always compelled to ask here first

    Once again, thank you


    Smoothie, smoothie, hundre prosent naturlig!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://644979]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-04-19 19:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found