I am using read.table in R to read in a file which has the following header:
ColA ColB# ColC ColD ColE
However, having a '#' in the header name confuses read.table and I get the following error:
*Error in read.table(paste(path, file, sep = ""), skip = SKIP_LINES, sep = "", : more columns than column names*
Any suggestions how I can get rid of the error message?