Displaying 1 result from an estimated 1 matches for "codetobeexecutedinscript".
2006 Sep 15
1
execution of source() command
...y 01
svn rev 38247
language R
version.string Version 2.3.1 (2006-06-01)
I have two questions concerning the source("test.R") command.
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 fil...