I have a csv file which sep="\t", quote=TRUE
, so the data is quoted like "2011-01-11"
I used the following script to import the csv file into R
temp <- sqldf("select * from dummy limit 10",file.format=list(header=TRUE,sep="\t",quote="\""))
But it gives me something like "\"2011-01-11\""
The \"
is the extra thing in each cell that I want to get rid of, how can I do it? Thanks.