Re: [R] Default Argument Passing in Script

2008-06-11 Thread Sebastian P. Luque
On Wed, 11 Jun 2008 21:01:54 +0800, "Gundala Viswanath" <[EMAIL PROTECTED]> wrote: > Hi all, Currently I run R script with arguments the following ways > $ R --vanilla < myscript.R ARGUMENT1 I don't think that call could possibly recognize ARGUMENT1 in myscript.R, according to the docs. > And

[R] Default Argument Passing in Script

2008-06-11 Thread Gundala Viswanath
Hi all, Currently I run R script with arguments the following ways $ R --vanilla < myscript.R ARGUMENT1 And in my script it is encoded as: __BEGIN__ args<-commandArgs() do_sth(args[3]) My question is that is there a way to set a default argument inside the R script? In Perl analogically wou

[R] Default Argument Passing in Script

2008-06-08 Thread Gundala Viswanath
Hi all, Currently I run R script with arguments the following ways $ R --vanilla < myscript.R ARGUMENT1 And in my script it is encoded as: __BEGIN__ args<-commandArgs() do_sth(args[3]) My question is that is there a way to set a default argument inside the R script? In Perl analogically wou