>> Currently, for numeric a you can do either
>> order(-a)
>> or
>> order(a, decreasing=FALSE)
>> For nonnumeric types like POSIXct and factors only
>> the latter works.
>>
>> Under my proposal your
>> order(a, -b, c, d)
>> would be
>> order(a, b, c, d, decreasing=c(FALSE,TRUE,FALSE,TRUE))
>> and it would work for any ordably class without modifications
>> to any classes.
>
> Why not use
>
> order(a, -xtfrm(b), c, -xtfrm(d))
That's a good suggestion. You could make it even easier to read with desc <- function(x) -xtfrm(x)
order(a, desc(b), c, desc(d))
Could you remind me what xtfrm stands for?
Thanks!
Hadley
-- http://had.co.nz/ ______________________________________________ R-devel_at_r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-develReceived on Thu 04 Feb 2010 - 00:23:46 GMT
Archive maintained by Robert King, hosted by
the discipline of
statistics at the
University of Newcastle,
Australia.
Archive generated by hypermail 2.2.0, at Thu 04 Feb 2010 - 04:30:19 GMT.
Mailing list information is available at https://stat.ethz.ch/mailman/listinfo/r-devel. Please read the posting guide before posting to the list.