Re: [Rd] order() and sort() on single row data.frames

2020-12-01 Thread Kurt Hornik
> Benjamin Becker writes: > Hi, > not sure whether this belongs here or has been reported/asked before. > In the current R devel the behavior of order() and sort() on data.frames > with a single row has changed. > Before (release): >> sort(data.frame("b", "a")) >   X.a. X.b. > 1    a   

[Rd] order() and sort() on single row data.frames

2020-12-01 Thread Benjamin Becker
Hi, not sure whether this belongs here or has been reported/asked before. In the current R devel the behavior of order() and sort() on data.frames with a single row has changed. Before (release): > sort(data.frame("b", "a"))   X.a. X.b. 1    a    b Now (devel): > sort(data.frame("b",