Displaying 1 result from an estimated 1 matches for "commandtoabotrexecutionofscriptfil".
Did you mean:
commandtoabotrexecutionofscriptfile
2006 Sep 15
1
execution of source() command
...mand.
1) Is there any command which I can put into the test.R script file
which aborts the execution of the script? At the moment I use
CodeToBeExecutedInScript
if (FALSE)
{
CodeNotToBeExecutedInScript
}
which is not elegant, but it works. I would prefer something like:
CodeToBeExecutedInScript
CommandToAbotrExecutionOfScriptFile
CodeNotToBeExecutedInScript
2) When I call source("test.R") and it is running for some time. Does
changing the file test.R while it is executed change the execution, i.e.
does the call of source() load the script file into memory and parses
and executes it from there or does it parse a...