Skip to content
Prev 70101 / 398503 Next

R annoyances

On Fri, 20 May 2005, bogdan romocea wrote:

            
You do realize that R CMD check checks for use of unassigned T/F?  So it 
would only be unchecked code which did that.
I assure you it is a *lot* harder than that.  Some of us use spaces for a 
start. No sed script can know the difference between

F <- "2";  as.numeric(x = F)
F <- "2";  as.numeric(x = FALSE)

(I know because I used to share code bases for S-PLUS and R, and had Perl 
scripts to do the conversion that worked for my style, but not for some 
other authors' code.)