Displaying 1 result from an estimated 1 matches for "dofunct".
Did you mean:
defunct
2010 Feb 17
1
skip lapply item for conditions(RAM, execution time)
...s for some unknown reason. RAM consumption ever increases (out of limit) and execution time is endless. I am not going to debug the package. (I rather feel like an end-user.)
If it was Java, I'd wrap the function in a try...catch statement like about
try{
for(i=1;i<=10000;i++){
dofunction(i);
}
}
catch(outofmemoryexception e){
kill(dofunctioninstance);
gc();
next;
}
I did not find out how to construct this in R. Is anyone so kind to point me to a documentation more exhaustive than help(conditions)? Or otherwise provide a snippet of R code?
Regards,...