Skip to content
Prev 275901 / 398506 Next

element-by-element comparison

Given that you want to compare
columns, you can just do:

A > B

If you wanted to compare rows, then
it is more troublesome.  One approach
would be:

rep(A, each=nrow(B)) > B
On 30/10/2011 03:51, Wendy wrote: