I have a problem when importing .csv file into R. With my code:
.csv
t <- read.csv(\"C:\\\\N0_07312014.CSV\", na.string=c(\"\",\"null\",\"NaN\",\"
I was also facing the same issue. Now solved.
Just use header = FALSE
header = FALSE
read.csv("data.csv", header = FALSE) -> mydata