I'm trying to read a column oriented csv file into R as a data frame.
the first line of the file is like so:
sDATE, sTIME,iGPS_ALT, ...
and then each additional line is a measurement:
4/10/2011,2:15,78, ...
when I try to read this into R, via
d = read.csv('filename')
I get a duplicate row.names error since R thinks that the first column of the data is the row names, and since all of the measurements were taken on the same day, the values in the first column do not change.
If I put in row.names = NULL into the read.csv call, I get an extraneous column d$row.names which corresponds to the sDATE column, and everything is "shifted" one column down, so d$sDATE would have 2:15 in it, not 4/10/2011 as needed.
If I open my csv in excel, do nothing and then save it, everything's cool. I have to process hundreds of these, so manually saving in excel is not something I want. If there's something programmatically I can do to preprocess these csv's in python or otherwise, that would be great.