Skip to content
Prev 283161 / 398498 Next

Help: read a proportion of high through-put data

Ok, it seems to have worked on my machine as well, but for some levels
you didn't mention before.

?If you are having trouble with the header names, I'll take a stab at
it -- R (by default) requires them to be syntactically valid names
(i.e., can't start with a number or have a dollar sign or hyphen in
them) and will modify them as needed. Generally this is helpful for
interactive use (if you want to call names directly). If you wish to
suppress this behavior, add the "check.names = FALSE" argument to
read.table() and it will keep them as is. If you ever do need a
non-syntactic name again, you can get it by surrounding it in
backquotes:

i.e., `3s` <- 4

3s # throws an error
identical(`3s`, 4) # works

Michael
On Mon, Jan 23, 2012 at 11:28 PM, chee chen <chee.chen at yahoo.com> wrote: