Hi,

I'm wondering why calling ">" with named arguments doesn't work as expected:

> args(">")
function (e1, e2) 
NULL

> sapply(c(1,2,3), `>`, e2=0)
[1] TRUE TRUE TRUE

> sapply(c(1,2,3), `>`, e1=0)
[1] TRUE TRUE TRUE

Shouldn't the latter be FALSE?

Thanks for any help,
Ryan


The information in this e-mail is intended only for the ...{{dropped:11}}

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to