search for: r41831

Displaying 2 results from an estimated 2 matches for "r41831".

2007 Jun 06
1
Quick notes on R with F7
Hi all, Just a quick heads up that I made the plunge into F7 this week. R version 2.5.0 Patched (2007-06-05 r41831) compiles and passes make check-all. F7 is using: [marcs at Bellerophon ~]$ gcc --version gcc (GCC) 4.1.2 20070502 (Red Hat 4.1.2-12) Some quick F7 notes: 1. Do a clean install rather than an 'in place' upgrade from FC6 or a prior version. There are a lot of changes, not the least of w...
2007 Jun 20
2
Expected behavior from: all(c(NA, NA, NA) < NA, na.rm = TRUE)?
Hi all, Came across this curious behavior in: R version 2.5.0 Patched (2007-06-05 r41831) A simplified example is: > all(c(NA, NA, NA) > NA, na.rm = TRUE) [1] TRUE Is this expected by definition? If one reduces this to individual comparisons, such as : > NA > NA [1] NA > all(NA > NA) [1] NA > all(NA > NA, na.rm = TRUE) [1] TRUE the initial comparison o...