<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
Dear all,
<br>&nbsp;
<br>&nbsp;
<p>I&nbsp;would like to know if the following behaviour is what one would
expect ?
<br>(I am running R-1.2.3 (I know I'd better upgrade) under Linux).
<p>It seems a data.frame with only one column becomes a special case....
and
<br>I cannot figure out why (I'd see no problem in being told to rtfm,
I could not find
<br>anything about that in the help pages)
<br>&nbsp;
<p>> a&nbsp; &lt;- data.frame(c(1:3),row.names=c("c","a","b"))
<br>> a
<br>&nbsp; c.1.3.
<br>c&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1
<br>a&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2
<br>b&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3
<br>> a[order(row.names(a)),]
<br>[1] 2 3 1
<br>&nbsp;
<p>...kinda odd, especially since the following give what I'd expect....
<br>&nbsp;
<p>> a&nbsp; &lt;- data.frame(cbind(c(1:3),c(3:5)),row.names=c("c","a","b"))
<br>> a
<br>&nbsp; X1 X2
<br>c&nbsp; 1&nbsp; 3
<br>a&nbsp; 2&nbsp; 4
<br>b&nbsp; 3&nbsp; 5
<br>> a[order(row.names(a)),]
<br>&nbsp; X1 X2
<br>a&nbsp; 2&nbsp; 4
<br>b&nbsp; 3&nbsp; 5
<br>c&nbsp; 1&nbsp; 3
<br>&nbsp;
<br>&nbsp;
<p>Cheers,
<br>&nbsp;
<p>Laurent
<br>&nbsp;
<pre>--&nbsp;
Laurent Gautier&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CBS, Building 208, DTU
PhD. Student&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; D-2800 Lyngby,Denmark&nbsp;&nbsp;&nbsp;
tel: +45 45 25 24 85&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <A HREF="http://www.cbs.dtu.dk/laurent">http://www.cbs.dtu.dk/laurent</A></pre>
&nbsp;</html>