Displaying 1 result from an estimated 1 matches for "m_workspace".
Did you mean:
_workspace
2005 Sep 19
1
Change in behavior of compare statement
...e across some Windows Script code which calls the
"file.exists" function in R to check for the existence of a particular
file on an R server. This is what the code looks like:
do
{
// some useful code
}
while (m_workspace.session.eval("file.exists(" + dataFile +
")") != "1");
It appears that the behavior of this code is different when used with R
version 2.1.1 compared to R version 1.9.1. If the compare statement s is
changed from
while (s != "1")
to...