[R] read.table question #only need to change column names

2011-04-01 Thread hongsheng wu
Hi all, I have a huge data set. All I want to do is to change the column names of the it. So if I use read.table, I can read the data in and change colnames and then write back, such as, t - read.table(a.txt, header = T, sep = \t) colnames(t) colnames(t) - c() # new column names

Re: [R] read.table question #only need to change column names

2011-04-01 Thread David Winsemius
On Apr 1, 2011, at 10:00 AM, hongsheng wu wrote: Hi all, I have a huge data set. All I want to do is to change the column names of the it. So if I use read.table, I can read the data in and change colnames and then write back, such as, t - read.table(a.txt, header = T, sep = \t)