I am trying to load a table to R with some of the column heading start with a number, i.e. 55353, 555xx, abvab, 77agg
I found after loading the files, all the headin
Probably your issue will be solved by adding check.names=FALSE to your read.table() call.
check.names=FALSE
read.table()
For more information see ?read.table
?read.table