Re: [R] is.all.equal

2005-06-27 Thread Christoph Buser
Hi It is corrected in the newer R-version. The help page now says: 'all.equal(x,y)' is a utility to compare R objects 'x' and 'y' testing near equality. If they are different, comparison is still made to some extent, and a report of the differences is returned.Don't use 'all.equal'

Re: [R] is.all.equal

2005-06-27 Thread Uwe Ligges
hadley wickham wrote: Hi, The description of all.equal states is.all.equal should be used for programming, typically in if expressions. It is a simple wrapper using identical as shown in the documentation there., but is.all.equal is not explicitly defined there (although there is a hint in

[R] is.all.equal

2005-06-26 Thread hadley wickham
Hi, The description of all.equal states is.all.equal should be used for programming, typically in if expressions. It is a simple wrapper using identical as shown in the documentation there., but is.all.equal is not explicitly defined there (although there is a hint in the comments that