I have a data set in an .xls format and i saved it as .csv file. When I'm trying to read it with
read.table("Gene.csv", header=TRUE, sep=",")
it shows:
Error in read.table("Gene.csv", header = TRUE, sep = ",") : more columns than column names
I think that maybe the csv file has some format issues because there are unfilled spaces under one Column. Any help would be grateful !!!!
options(warn=3)
Then run your code looking for an error message.
so I checked line 3 and viola , it was fixed.