On 12/12/2011 10:39 AM, Alexander wrote:
> Hello,
> I am trying to write a script to analyse R scripts, which contain only
> functions. Therefor, I want to test the R script if it contains onyl correct
> code. Is there a nicer and more efficent function than
>
> test <- try(source("someRscript"))
>
On 12/12/2011 10:39 AM, Alexander wrote:
> Hello,
> I am trying to write a script to analyse R scripts, which contain only
> functions. Therefor, I want to test the R script if it contains onyl correct
> code. Is there a nicer and more efficent function than
>
> test <- try(source("someRscript"))
>
Hello,
I am trying to write a script to analyse R scripts, which contain only
functions. Therefor, I want to test the R script if it contains onyl correct
code. Is there a nicer and more efficent function than
test <- try(source("someRscript"))
if(class(test) == "try-error"){
print("Not execut
3 matches
Mail list logo