Re: [R] about sorting table

2005-12-01 Thread Martin Maechler
UweL == Uwe Ligges [EMAIL PROTECTED] on Thu, 01 Dec 2005 08:37:37 +0100 writes: UweL [EMAIL PROTECTED] wrote: hi all, I load a table with headers that enable me to acces it by the column names: tab-read.table(blob/data.dat,h=T) attach(tab)

Re: [R] about sorting table

2005-12-01 Thread Uwe Ligges
Martin Maechler wrote: UweL == Uwe Ligges [EMAIL PROTECTED] on Thu, 01 Dec 2005 08:37:37 +0100 writes: UweL [EMAIL PROTECTED] wrote: hi all, I load a table with headers that enable me to acces it by the column names: tab-read.table(blob/data.dat,h=T)

Re: [R] about sorting table

2005-12-01 Thread Michael H. Prager
on 12/1/2005 4:05 AM Martin Maechler said the following: UweL == Uwe Ligges [EMAIL PROTECTED] on Thu, 01 Dec 2005 08:37:37 +0100 writes: UweL [EMAIL PROTECTED] wrote: hi all, I load a table with headers that enable me to acces it by the column names:

[R] about sorting table

2005-11-30 Thread [EMAIL PROTECTED]
hi all, I load a table with headers that enable me to acces it by the column names: tab-read.table(blob/data.dat,h=T) attach(tab) everythings are OK, but i try to sort this table against one of his column like this: tab-tab[order(tab$IndexUI),]; It is still ok, the table is sorted, if i type

Re: [R] about sorting table

2005-11-30 Thread Uwe Ligges
[EMAIL PROTECTED] wrote: hi all, I load a table with headers that enable me to acces it by the column names: tab-read.table(blob/data.dat,h=T) attach(tab) everythings are OK, but i try to sort this table against one of his column like this: tab-tab[order(tab$IndexUI),]; It is