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, ...
I faced the same issue. It got resolved by adding header=TRUE like below
header=TRUE
tempdata <- read.csv("C:\\File.csv",header=TRUE)
The first column which was the date column got aligned properly.