[R] sorting by the row names

2008-08-21 Thread kayj
is it possible to sort a file by the row names? -- View this message in context: http://www.nabble.com/sorting-by-the-row-names-tp19090189p19090189.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list

Re: [R] sorting by the row names

2008-08-21 Thread Prof Brian Ripley
On Thu, 21 Aug 2008, someone without a real name wrote: is it possible to sort a file by the row names? No, as files does not have row names. But data frames do, so perhaps DF[sort.list(row.names(DF)), ] is what you are looking for. -- Brian D. Ripley, [EMAIL PROTECTED]

Re: [R] sorting by the row names

2008-08-21 Thread Richard . Cotton
is it possible to sort a file by the row names? I presume you mean a data frame rather than a file. In which case the answer is yes: df - data.frame(a=1:10, b=rnorm(10), row.names=sample(letters[1:10])) df[order(rownames(df)),] Regards, Richie. Mathematical Sciences Unit HSL