In PHP we can do error_reporting(E_ALL) or error_reporting(E_ALL|E_STRICT) to have warnings about suspicious code. In g++ you can supply -Wall (and other flags) to get more checking of your code. Is there some similar in R?
As a specific example, I was refactoring a block of code into some functions. In one of those functions I had this line:
if(nm %in% fields$non_numeric)...
Much later I realized that I had overlooked adding fields to the parameter list, but R did not complain about an undefined variable.
fieldswas also a global, which means it's legit to refer to it. If you want to explicitly declare globals you could do this with a lot of environment manipulation. – Owen Aug 28 '11 at 6:51options(warn=2)to turn all warnings into errors, however. – Ari B. Friedman Aug 28 '11 at 10:46?codetools::checkUsage(codetoolsis a built-in package) – Ben Bolker Aug 28 '11 at 12:35